using System; using System.Collections.Generic; namespace MediaBrowser.Model.Updates { /// /// Class PackageInfo. /// public class PackageInfo { /// /// Gets or sets the name. /// /// The name. public string name { get; set; } /// /// Gets or sets the short description. /// /// The short description. public string shortDescription { get; set; } /// /// Gets or sets the overview. /// /// The overview. public string overview { get; set; } /// /// Gets or sets the target filename for the downloaded binary. /// /// The target filename. public string filename { get; set; } /// /// Gets or sets the owner. /// /// The owner. public string owner { get; set; } /// /// Gets or sets the category. /// /// The category. public string category { get; set; } /// /// The guid of the assembly associated with this plugin. /// This is used to identify the proper item for automatic updates. /// /// The name. public string guid { get; set; } /// /// Gets or sets the versions. /// /// The versions. public IReadOnlyList versions { get; set; } /// /// Initializes a new instance of the class. /// public PackageInfo() { versions = Array.Empty(); } } }