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