16 lines
405 B
C#
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; }
|
|
}
|
|
}
|