using System.Collections.Generic; using Orchard.Environment.Extensions.Models; namespace Orchard.Modules.Models { /// /// Represents a module. /// public class ModuleEntry { /// /// Default constructor. /// public ModuleEntry() { Notifications = new List(); } /// /// The module's extension descriptor. /// public ExtensionDescriptor Descriptor { get; set; } /// /// Boolean value indicating if the module needs a version update. /// public bool NeedsVersionUpdate { get; set; } /// /// Boolean value indicating if the feature was recently installed. /// public bool IsRecentlyInstalled { get; set; } /// /// List of module notifications. /// public List Notifications { get; set; } } }