using System.Collections.Generic; using Neo.LegitimateLicences.Data.Models; using Neo.LegitimateLicences.Common.ViewModels; namespace Neo.LegitimateLicences.Applications { public class UnassignedReceiptsModel : ResponsiveAppBaseModel { public List UnassignedReceipts { get; set; } public List ApplicationRequestTypes { get; set; } public List PaymentTypes { get; set; } public IEnumerable RecentReceipts { get; set; } public IEnumerable ReceiptsAwaitingCashup { get; set; } public object Lookups { get; set; } } }