using MediaBrowser.Model.Notifications;
namespace Jellyfin.Api.Models.NotificationDtos
{
///
/// The admin notification dto.
///
public class AdminNotificationDto
{
///
/// Gets or sets the notification name.
///
public string? Name { get; set; }
///
/// Gets or sets the notification description.
///
public string? Description { get; set; }
///
/// Gets or sets the notification level.
///
public NotificationLevel? NotificationLevel { get; set; }
///
/// Gets or sets the notification url.
///
public string? Url { get; set; }
}
}