15 lines
453 B
C#
Raw Normal View History

2024-05-13 09:00:08 +04:00
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; }
}
}