12 lines
329 B
C#
Raw Normal View History

2024-04-28 16:00:22 +04:00
namespace CarCenterContracts.SearchModels
{
public class PreSaleWorkSearchModel
{
public int? Id { get; set; }
public string? PreSaleWorkType { get; set; }
public int? ManagerId { get; set; }
public DateTime? DateFrom { get; set; }
public DateTime? DateTo { get; set; }
}
}