18 lines
462 B
C#
18 lines
462 B
C#
|
using FactoryDataModels.Models;
|
|||
|
|
|||
|
namespace FactoryContracts.BindingModels
|
|||
|
{
|
|||
|
public class PlanBindingModel : IPlanModel
|
|||
|
{
|
|||
|
public int Id { get; set; }
|
|||
|
|
|||
|
public string PlanName { get; set; } = string.Empty;
|
|||
|
|
|||
|
public Dictionary<int, (ILatheModel, int)> PlanLathes { get; set; } = new();
|
|||
|
|
|||
|
public Dictionary<int, (IComponentModel, int)> PlanComponents { get; set; } = new();
|
|||
|
|
|||
|
public DateTime date { get; set; }
|
|||
|
}
|
|||
|
}
|