PIbd-23_Elatomtsev_L.K._SUB.../DeviceContracts/SearchModels/DeviceSearchModel.cs
2024-05-13 09:00:08 +04:00

15 lines
453 B
C#

namespace DeviceContracts.SearchModels
{
public class DeviceSearchModel
{
public int? Id { get; set; }
public string? Model { get; set; }
public string? SerialNumber { get; set; }
public DateOnly? ProductionDate { get; set; }
public int? WarrantyPeriod { get; set; }
public bool? Condition { get; set; }
public int KindId { get; set; }
public int? KitId { get; set; }
}
}