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

12 lines
263 B
C#
Raw Normal View History

2025-06-28 15:31:07 +03:30

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; }
}
}