#nullable enable using System; using System.Collections.Generic; namespace MediaBrowser.Model.Updates { /// /// Class PackageInfo. /// public class PackageInfo { /// /// Initializes a new instance of the class. /// public PackageInfo() { Versions = Array.Empty(); Guid = string.Empty; Category = string.Empty; Name = string.Empty; Overview = string.Empty; Owner = string.Empty; Description = string.Empty; } /// /// Gets or sets the name. /// /// The name. public string Name { get; set; } /// /// Gets or sets a long description of the plugin containing features or helpful explanations. /// /// The description. public string Description { get; set; } /// /// Gets or sets a short overview of what the plugin does. /// /// The overview. public string Overview { 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; } /// /// Gets or sets the guid of the assembly associated with this plugin. /// This is used to identify the proper item for automatic updates. /// /// The name. #pragma warning disable CA1720 // Identifier contains type name public string Guid { get; set; } #pragma warning restore CA1720 // Identifier contains type name /// /// Gets or sets the versions. /// /// The versions. #pragma warning disable CA2227 // Collection properties should be read only public IList Versions { get; set; } #pragma warning restore CA2227 // Collection properties should be read only /// /// Gets or sets the image url for the package. /// public string? ImageUrl { get; set; } } }