mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-31 18:47:18 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			31 lines
		
	
	
		
			798 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			798 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| 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; }
 | |
|     }
 | |
| }
 |