11 lines
319 B
C#
11 lines
319 B
C#
|
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; }
|
|||
|
}
|
|||
|
}
|