NotificationSubscriptionDto.cs 351 B

1234567891011121314
  1. using System.ComponentModel.DataAnnotations;
  2. using Abp.Notifications;
  3. namespace WeApp.BaseSystem.Notifications.Dto
  4. {
  5. public class NotificationSubscriptionDto
  6. {
  7. [Required]
  8. [MaxLength(NotificationInfo.MaxNotificationNameLength)]
  9. public string Name { get; set; }
  10. public bool IsSubscribed { get; set; }
  11. }
  12. }