CourseWork_Factory/FactoryView/FactoryContracts/ViewModels/LatheViewModel.cs

22 lines
504 B
C#
Raw Normal View History

2023-04-08 18:12:08 +04:00
using FactoryDataModels.Models;
using System.ComponentModel;
namespace FactoryContracts.ViewModels
{
public class LatheViewModel : ILatheModel
{
public int Id { get; set; }
[DisplayName("Название станка")]
public string LatheName { get; set; } = String.Empty;
public int MasterId { get; set; }
public int BusyId { get; set; }
2023-05-19 21:35:04 +04:00
public Dictionary<int, IReinforcedModel> LatheReinforcedes { get; set; } = new();
2023-04-08 18:12:08 +04:00
}
}