NotificationSettingsDto.cs 233 B

12345678
  1. namespace VberZero.AppService.Notifications.Dto;
  2. public class NotificationSettingsDto
  3. {
  4. public bool ReceiveNotifications { get; set; }
  5. public List<NotificationSubscriptionWithDisplayNameDto> Notifications { get; set; }
  6. }