using System.Collections.Generic; using Neo.Legitimate.Data.Models; namespace Neo.Legitimate.Applications.Models { public class CashupUserPageModel { public IEnumerable ReceiptsAwaitingCashup { get; set; } public List RecentCashups { get; set; } public string DefaultPrinterName { get; set; } public long UserID { get; set; } public string CashierName { get; set; } } }