mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-31 02:27:18 -04:00 
			
		
		
		
	* Add analyzers to MediaBrowser.XbmcMetadata * Enable TreatWarningsAsErrors for MediaBrowser.XbmcMetadata * Add analyzers to MediaBrowser.WebDashboard * Enable TreatWarningsAsErrors for MediaBrowser.WebDashboard * Disable SA1600 in favor of CS1591
		
			
				
	
	
		
			26 lines
		
	
	
		
			656 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			656 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| #pragma warning disable CS1591
 | |
| 
 | |
| namespace MediaBrowser.Model.Configuration
 | |
| {
 | |
|     public class AccessSchedule
 | |
|     {
 | |
|         /// <summary>
 | |
|         /// Gets or sets the day of week.
 | |
|         /// </summary>
 | |
|         /// <value>The day of week.</value>
 | |
|         public DynamicDayOfWeek DayOfWeek { get; set; }
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Gets or sets the start hour.
 | |
|         /// </summary>
 | |
|         /// <value>The start hour.</value>
 | |
|         public double StartHour { get; set; }
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Gets or sets the end hour.
 | |
|         /// </summary>
 | |
|         /// <value>The end hour.</value>
 | |
|         public double EndHour { get; set; }
 | |
|     }
 | |
| }
 |