15 lines
303 B
C#
15 lines
303 B
C#
|
|
using ServiceStationDataModels;
|
|
|
|
namespace ServiceStationContracts.BindingModels
|
|
{
|
|
public class CategoryWorkBindingModel : ICategoryWorkModel
|
|
{
|
|
public string Name { get; set; } = string.Empty;
|
|
|
|
public int ExecutorId { get; set; }
|
|
|
|
public int ID { get; set; }
|
|
}
|
|
}
|