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

15 lines
528 B
C#

using DeviceDataModels.Models;
namespace DeviceContracts.BindingModels
{
public class DeviceBindingModel : IDeviceModel
{
public int Id { get; set; }
public string? Model { get; set; } = string.Empty;
public string? SerialNumber { get; set; } = string.Empty;
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; }
}
}