Files
Hushian/Common/Dtos/Conversation/ADD_ConversationDto.cs
mmrbnjd 1924c88e7a ...
2025-07-07 22:04:07 +03:30

12 lines
261 B
C#

namespace Common.Dtos.Conversation
{
public class ADD_ConversationDto
{
public int UserID { get; set; }
public string Question { get; set; }
public int? GroupID { get; set; }
public int CompanyID { get; set; }
}
}