2025-06-28 15:31:07 +03:30
|
|
|
|
|
|
|
|
|
namespace Common.Dtos.Conversation
|
|
|
|
|
{
|
|
|
|
|
public class ADD_ConversationDto
|
|
|
|
|
{
|
2025-07-06 01:49:34 +03:30
|
|
|
|
public int UserID { get; set; }
|
2025-06-28 15:31:07 +03:30
|
|
|
|
public string Question { get; set; }
|
|
|
|
|
public int? GroupID { get; set; }
|
|
|
|
|
public int CompanyID { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|