NotificationSubscriptionWithDisplayNameDto.cs 253 B

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