mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 19:17:24 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			48 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			48 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
#nullable disable
 | 
						|
using System;
 | 
						|
 | 
						|
namespace MediaBrowser.Model.Updates
 | 
						|
{
 | 
						|
    /// <summary>
 | 
						|
    /// Class InstallationInfo.
 | 
						|
    /// </summary>
 | 
						|
    public class InstallationInfo
 | 
						|
    {
 | 
						|
        /// <summary>
 | 
						|
        /// Gets or sets the guid.
 | 
						|
        /// </summary>
 | 
						|
        /// <value>The guid.</value>
 | 
						|
        public Guid Guid { get; set; }
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Gets or sets the name.
 | 
						|
        /// </summary>
 | 
						|
        /// <value>The name.</value>
 | 
						|
        public string Name { get; set; }
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Gets or sets the version.
 | 
						|
        /// </summary>
 | 
						|
        /// <value>The version.</value>
 | 
						|
        public Version Version { get; set; }
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Gets or sets the changelog for this version.
 | 
						|
        /// </summary>
 | 
						|
        /// <value>The changelog.</value>
 | 
						|
        public string Changelog { get; set; }
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Gets or sets the source URL.
 | 
						|
        /// </summary>
 | 
						|
        /// <value>The source URL.</value>
 | 
						|
        public string SourceUrl { get; set; }
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Gets or sets a checksum for the binary.
 | 
						|
        /// </summary>
 | 
						|
        /// <value>The checksum.</value>
 | 
						|
        public string Checksum { get; set; }
 | 
						|
    }
 | 
						|
}
 |