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