/****************************************************************************** // Canary Islands Computer Museum Website // ---------------------------------------------------------------------------- // // Filename : Computer.cs // Author(s) : Natalia Portillo // // --[ Description ] ---------------------------------------------------------- // // High level representation of a computer. // // --[ License ] -------------------------------------------------------------- // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as // published by the Free Software Foundation, either version 3 of the // License, or (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // // ---------------------------------------------------------------------------- // Copyright © 2003-2018 Natalia Portillo *******************************************************************************/ namespace Cicm.Database.Schemas { /// Computer public class Machine { /// Capacity of first removable disk format public string Cap1; /// Capacity of second removable disk format public string Cap2; /// Manufacturer's company ID public int Company; /// ID of first removable disk format public int Disk1; /// ID of second removable disk format public int Disk2; /// ID of first hard disk format public int Hdd1; /// ID of second hard disk format public int Hdd2; /// ID of third hard disk format public int Hdd3; /// ID public int Id; /// Model name public string Model; /// Machine type public MachineType Type; /// Introduction date, 0 if unknown, 1000 if prototype public int Year; } }