Coursach/Course/Contracts/ViewModels/WorkshopViewModel.cs

20 lines
622 B
C#
Raw Normal View History

2024-04-27 12:35:20 +04:00
using DataModels.Models;
using System.ComponentModel;
namespace Contracts.ViewModels
{
public class WorkshopViewModel : IWorkshopModel
{
public int Id { get; set; }
[DisplayName("Название цеха")]
public string Title { get; set; } = string.Empty;
[DisplayName("Адрес цеха")]
public string Address { get; set; } = string.Empty;
[DisplayName("ФИО директора цеха")]
public string Director { get; set; } = string.Empty;
public int UserId { get; set; }
2024-04-27 22:13:33 +04:00
public int? ProductionId { get; set; }
public Dictionary<int, IWorkerModel>? WorkerWorkshops { get; set; }
2024-04-27 12:35:20 +04:00
}
}