NotificationSubscriptionDto.cs 325 B

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