This commit is contained in:
mmrbnjd
2025-07-06 20:38:02 +03:30
parent 8b89957a93
commit 2432ab293f
3 changed files with 110 additions and 11 deletions

View File

@@ -5,7 +5,8 @@ namespace Common.Dtos.Conversation
public class Read_ConversationDto
{
public int ID { get; set; }
public string Title { get; set; }
public string LastText { get; set; }
public ConversationType LastMsgType { get; set; }
public ConversationStatus status { get; set; }
public int? GroupID { get; set; }
@@ -17,8 +18,8 @@ namespace Common.Dtos.Conversation
public int? ExperID { get; set; }
public string? ExperFullName { get; set; }
public string Cdate { get; set; }
public string Ctime { get; set; }
public string LastMsgdate { get; set; }
public string LastMsgtime { get; set; }
public int NoReadCount { get; set; } = 0;
}
}