13 lines
327 B
C#
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; }
|
|||
|
}
|
|||
|
}
|