using System.Collections.Generic; using System.Text; namespace GxPress.Request.Notice { /// /// 用户删除通知 /// public class NoticeDeRequest { /// /// 收件人ID /// public List MiddleIds { get; set; } /// /// 文件夹类型 1 通知 2话题 3 收藏 4笔记 5 普通站内信 6匿名站内信 7 小组 12收藏 13笔记 /// public int FolderType { get; set; } /// /// 是否永久删除 /// /// public bool IsDelete{get;set;} /// /// 用户ID /// /// public int UserId{get;set;} } }