12 lines
251 B
C#
Raw Normal View History

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; }
}
}