AdminNotificationDto.cs 798 B

123456789101112131415161718192021222324252627282930
  1. using MediaBrowser.Model.Notifications;
  2. namespace Jellyfin.Api.Models.NotificationDtos
  3. {
  4. /// <summary>
  5. /// The admin notification dto.
  6. /// </summary>
  7. public class AdminNotificationDto
  8. {
  9. /// <summary>
  10. /// Gets or sets the notification name.
  11. /// </summary>
  12. public string? Name { get; set; }
  13. /// <summary>
  14. /// Gets or sets the notification description.
  15. /// </summary>
  16. public string? Description { get; set; }
  17. /// <summary>
  18. /// Gets or sets the notification level.
  19. /// </summary>
  20. public NotificationLevel? NotificationLevel { get; set; }
  21. /// <summary>
  22. /// Gets or sets the notification url.
  23. /// </summary>
  24. public string? Url { get; set; }
  25. }
  26. }