namespace DeviceContracts.SearchModels { public class ServiceSearchModel { public int? Id { get; set; } public string? Description { get; set; } public DateOnly? StartDate { get; set; } public DateOnly? EndDate { get; set; } public int? DeviceId { get; set; } } }