12 lines
244 B
C#
Raw Normal View History

2024-04-30 01:41:35 +03:00
using ServiceStationDataModels;
namespace ServiceStationContracts.BindingModels
{
public class ClientWorkBindingModel : IClientWorkModel
{
public int ClientId { get; set; }
public int WorkId { get; set; }
}
}