using System; using System.Collections.Generic; using System.Text; namespace GxPress.Request.User { /// /// 是否接收通知 /// public class UserNoticeRequest { /// /// 用户ID /// public int Id { get; set; } /// /// 是否接收通知 /// public bool Notice { get; set; } } }