using System.Collections.Generic; using Neo.Legitimate.Data.Models; namespace Neo.Legitimate.Applications.Models { public class GazetteModel { public IEnumerable GazettesAwaitingPrinting { get; set; } public IEnumerable GazettesAtPrinters { get; set; } public GazetteDetail CurrentGazette { get; set; } } }