using Neo.LegitimateLicences.Common.ViewModels; using Neo.LegitimateLicences.Data.Models; using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace Neo.LegitimateLicences.GazetteConsole { public class ApplicationsModel : ResponsiveAppBaseModel { public GazetteDetail GazetteDetail { get; set; } public IEnumerable Applications { get; set; } public long entityID { get; set; } public long itemID { get; set; } public long DocumentStoreLocationID { get; set; } public bool HasApplications { get; set; } public bool CanBypassGazetteExpiry { get; set; } /// /// When true, the Bypass expiry date button is shown for e-hailing applications (60, 61, 62). /// Set from System.Settings AllowBypassGazetteExpiryForEhailing (TRUE = dev/test, FALSE or missing = production). /// public bool ShowBypassForEhailing { get; set; } } }