using System.ComponentModel.DataAnnotations; using Abp.Notifications; namespace WeApp.BaseSystem.Notifications.Dto { public class NotificationSubscriptionDto { [Required] [MaxLength(NotificationInfo.MaxNotificationNameLength)] public string Name { get; set; } public bool IsSubscribed { get; set; } } }