26 lines
729 B
C#
26 lines
729 B
C#
using Common.Enums;
|
|
|
|
namespace Common.Dtos.Conversation
|
|
{
|
|
public class Read_ConversationDto
|
|
{
|
|
public int ID { get; set; }
|
|
public string LastText { get; set; }
|
|
public ConversationType LastMsgType { get; set; }
|
|
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; }
|
|
|
|
public string LastMsgdate { get; set; }
|
|
public string LastMsgtime { get; set; }
|
|
public int NoReadCount { get; set; } = 0;
|
|
}
|
|
}
|