Coursach/Course/Contracts/BindingModels/ProductionBindingModel.cs

15 lines
399 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; }
public Dictionary<int, IDetailModel> ProductionDetails { get; set; } = new();
}
}