using System; using System.Collections.Generic; using System.Text; namespace GxPress.Request.Addressee { /// /// 添加收件人 /// public class NoticeAddresseeInRequest { /// /// 通知ID /// public int ArticleId { get; set; } /// /// 收件人 /// public int UserId { get; set; } /// /// 收件人姓名 /// public string UserName { get; set; } /// /// 是否阅读 /// public bool IsRead { get; set; } } }