NotificationSubscriptionWithDisplayNameDto.cs 231 B

12345678
  1. namespace VberZero.AppService.Notifications.Dto;
  2. public class NotificationSubscriptionWithDisplayNameDto : NotificationSubscriptionDto
  3. {
  4. public string DisplayName { get; set; }
  5. public string Description { get; set; }
  6. }