2024-08-03 19:12:18 +04:00

16 lines
405 B
C#

using ServiceStationDataModels;
using System.ComponentModel;
namespace ServiceStationContracts.ViewModels
{
public class CategoryWorkViewModel : ICategoryWorkModel
{
[DisplayName("Название категории работ")]
public string Name { get; set; } = string.Empty;
public int ExecutorId { get; set; }
public int ID { get; set; }
}
}