15 lines
483 B
C#
Raw Normal View History

2024-04-29 17:06:56 +04:00
using UniversityDataModels;
using UniversityDataModels.HelperInterfaces;
namespace UniversityContracts.BindingModels
{
public class PurchaseBindingModel : IPurchaseModel
{
public int ClientId { get; set; }
public DateOnly DatePurchase { get; set; }
public Dictionary<int, ClassByPurchaseModel> ClassModel { get; set; } = new();
public List<CostByPurchaseModel> CostsModel { get; set; } = new();
public int Id { get; set; }
}
}