2018-08-05 23:11:15 +01:00
|
|
|
|
namespace Cicm.Database.Models
|
|
|
|
|
|
{
|
2018-08-06 21:27:14 +01:00
|
|
|
|
public class OwnedComputer
|
2018-08-05 23:11:15 +01:00
|
|
|
|
{
|
2018-08-06 21:07:07 +01:00
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
|
public int DbId { get; set; }
|
|
|
|
|
|
public string Date { get; set; }
|
|
|
|
|
|
public StatusType Status { get; set; }
|
|
|
|
|
|
public int Trade { get; set; }
|
|
|
|
|
|
public int Boxed { get; set; }
|
|
|
|
|
|
public int Manuals { get; set; }
|
|
|
|
|
|
public int Cpu1 { get; set; }
|
|
|
|
|
|
public decimal Mhz1 { get; set; }
|
|
|
|
|
|
public int Cpu2 { get; set; }
|
|
|
|
|
|
public decimal Mhz2 { get; set; }
|
|
|
|
|
|
public int Ram { get; set; }
|
|
|
|
|
|
public int Vram { get; set; }
|
|
|
|
|
|
public string Rigid { get; set; }
|
|
|
|
|
|
public int Disk1 { get; set; }
|
|
|
|
|
|
public int Cap1 { get; set; }
|
|
|
|
|
|
public int Disk2 { get; set; }
|
|
|
|
|
|
public int Cap2 { get; set; }
|
2018-08-05 23:11:15 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|