using System; namespace Znyc.Recruitment.Admin.Security.Dtos { /// /// 通话评论输出模型 /// public class CallFeedbackOutputDto { /// /// 昵称 /// public string NickName { get; set; } /// /// 联系电话 /// public string Phone { get; set; } /// /// 头像 /// public string WxAvatarUrl { get; set; } public long Id { get; set; } public long UserId { get; set; } /// /// 状态 /// public int Status { get; set; } /// /// 反馈内容 /// public string Content { get; set; } /// /// 时间 /// public DateTime CreatedTime { get; set; } /// /// 是否已读 /// public bool IsRead { get; set; } } }