Files
Hushian/Common/Dtos/Conversation/ADD_ConversationDto.cs

13 lines
303 B
C#
Raw Normal View History

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; }
public int? ExperID { get; set; }
}
}