NotificationSubscriptionWithDisplayNameDto.cs 247 B

123456789
  1. namespace WeApp.BaseSystem.Notifications.Dto
  2. {
  3. public class NotificationSubscriptionWithDisplayNameDto : NotificationSubscriptionDto
  4. {
  5. public string DisplayName { get; set; }
  6. public string Description { get; set; }
  7. }
  8. }