2024-05-13 09:00:08 +04:00

13 lines
327 B
C#

namespace DeviceDataModels.Models
{
public interface IDeviceModel : IId
{
string Model { get; }
string? SerialNumber { get; }
DateOnly? ProductionDate { get; }
int? WarrantyPeriod { get; }
bool Condition { get; }
int KindId { get; }
int? KitId { get; }
}
}