using System.Collections.Generic; using Neo.Legitimate.Data.Models; namespace Neo.Legitimate.Applications.Models { public class ReceiptModel { public IEnumerable UnassignedReceipts { get; set; } public IEnumerable ApplicationRequestTypes { get; set; } public IEnumerable PaymentTypes { get; set; } public IEnumerable ApplicationsAwaitingReceiptEFT { get; set; } public IEnumerable ApplicationsAwaitingReceipt { get; set; } public IEnumerable RecentReceipts { get; set; } public IEnumerable ReceiptsAwaitingCashup { get; set; } public string DefaultPrinterName { get; set; } } }