2024-04-29 15:36:48 +04:00

22 lines
557 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace UniversityContracts.BindingModels
{
public class CostBindingModel
{
public int EmployeeId { get; set; }
public string NameOfCost { get; set; } = string.Empty;
public string Discription { get; set; } = string.Empty;
public double Price { get; set; }
public Dictionary<int, CostByPurchaseModel> PurchasesModels { get; set; } = new();
public int Id { get; set; }
}
}