You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
798 B
31 lines
798 B
using MediaBrowser.Model.Notifications;
|
|
|
|
namespace Jellyfin.Api.Models.NotificationDtos
|
|
{
|
|
/// <summary>
|
|
/// The admin notification dto.
|
|
/// </summary>
|
|
public class AdminNotificationDto
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the notification name.
|
|
/// </summary>
|
|
public string? Name { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the notification description.
|
|
/// </summary>
|
|
public string? Description { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the notification level.
|
|
/// </summary>
|
|
public NotificationLevel? NotificationLevel { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the notification url.
|
|
/// </summary>
|
|
public string? Url { get; set; }
|
|
}
|
|
}
|