12 lines
263 B
C#
12 lines
263 B
C#
|
|
namespace Common.Dtos.Conversation
|
|
{
|
|
public class ADD_ConversationDto
|
|
{
|
|
public string Question { get; set; }
|
|
public int? GroupID { get; set; }
|
|
public int CompanyID { get; set; }
|
|
public int? ExperID { get; set; }
|
|
}
|
|
}
|