11 lines
199 B
C#
Raw Normal View History

2024-04-30 01:41:35 +03:00
namespace ServiceStationContracts.SearchModels
{
public class ClientWorkSearchModel
{
public int? ClientId { get; set; }
public int? WorkId { get; set; }
}
}