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

26 lines
729 B
C#
Raw Normal View History

2025-06-28 15:31:07 +03:30
using Common.Enums;
namespace Common.Dtos.Conversation
{
public class Read_ConversationDto
{
public int ID { get; set; }
2025-07-06 20:38:02 +03:30
public string LastText { get; set; }
public ConversationType LastMsgType { get; set; }
2025-06-28 15:31:07 +03:30
public ConversationStatus status { get; set; }
public int? GroupID { get; set; }
public string? GroupName { get; set; }
public int UserID { get; set; }
public string? UserFullName { get; set; }
public int? ExperID { get; set; }
public string? ExperFullName { get; set; }
2025-07-06 20:38:02 +03:30
public string LastMsgdate { get; set; }
public string LastMsgtime { get; set; }
2025-06-28 15:31:07 +03:30
public int NoReadCount { get; set; } = 0;
}
}