mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 19:17:24 -05:00 
			
		
		
		
	added multipart game properties
This commit is contained in:
		
							parent
							
								
									816f0228ab
								
							
						
					
					
						commit
						4a1d8771a8
					
				@ -1,8 +1,14 @@
 | 
			
		||||
 | 
			
		||||
using System.Collections.Generic;
 | 
			
		||||
 | 
			
		||||
namespace MediaBrowser.Controller.Entities
 | 
			
		||||
{
 | 
			
		||||
    public class Game : BaseItem
 | 
			
		||||
    {
 | 
			
		||||
        public Game()
 | 
			
		||||
        {
 | 
			
		||||
            MultiPartGameFiles = new List<string>();
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        /// <summary>
 | 
			
		||||
        /// Gets the type of the media.
 | 
			
		||||
        /// </summary>
 | 
			
		||||
@ -35,6 +41,17 @@ namespace MediaBrowser.Controller.Entities
 | 
			
		||||
            }
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        /// <summary>
 | 
			
		||||
        /// Gets or sets a value indicating whether this instance is multi part.
 | 
			
		||||
        /// </summary>
 | 
			
		||||
        /// <value><c>true</c> if this instance is multi part; otherwise, <c>false</c>.</value>
 | 
			
		||||
        public bool IsMultiPart { get; set; }
 | 
			
		||||
 | 
			
		||||
        /// <summary>
 | 
			
		||||
        /// Holds the paths to the game files in the event this is a multipart game
 | 
			
		||||
        /// </summary>
 | 
			
		||||
        public List<string> MultiPartGameFiles { get; set; }
 | 
			
		||||
 | 
			
		||||
        /// <summary>
 | 
			
		||||
        /// 
 | 
			
		||||
        /// </summary>
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user