mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-31 10:37:22 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			628 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			628 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| namespace MediaBrowser.Model.Entities
 | |
| {
 | |
|     /// <summary>
 | |
|     /// The status of a series.
 | |
|     /// </summary>
 | |
|     public enum SeriesStatus
 | |
|     {
 | |
|         /// <summary>
 | |
|         /// The continuing status. This indicates that a series is currently releasing.
 | |
|         /// </summary>
 | |
|         Continuing,
 | |
| 
 | |
|         /// <summary>
 | |
|         /// The ended status. This indicates that a series has completed and is no longer being released.
 | |
|         /// </summary>
 | |
|         Ended,
 | |
| 
 | |
|         /// <summary>
 | |
|         /// The unreleased status. This indicates that a series has not been released yet.
 | |
|         /// </summary>
 | |
|         Unreleased
 | |
|     }
 | |
| }
 |