Coursach/Course/Contracts/BindingModels/ProductionBindingModel.cs

15 lines
406 B
C#
Raw Normal View History

2024-04-03 14:13:18 +04:00
using DataModels.Models;
namespace Contracts.BindingModels
{
public class ProductionBindingModel : IProductionModel
{
public int Id { get; set; }
public int UserId { get; set; }
public string Name { get; set; } = string.Empty;
public double Cost { get; set; }
2024-04-23 22:34:09 +04:00
public Dictionary<int, (IDetailModel, int)> ProductionDetails { get; set; } = new();
2024-04-03 14:13:18 +04:00
}
}