namespace IM_API.Dtos { public class ClearConversationsDto { public int UserId { get; set; } /// /// 聊天类型 /// public ChatType ChatType { get; set; } /// /// 目标ID,聊天类型为群则为群id,私聊为用户id /// public int TargetId { get; set; } } public enum ChatType { /// /// 私聊 /// single = 0, /// /// 私聊 /// group = 1 } }