/****************************************************************************** // Canary Islands Computer Museum Website // ---------------------------------------------------------------------------- // // Filename : OwnComputer.cs // Author(s) : Natalia Portillo // // --[ Description ] ---------------------------------------------------------- // // High level representation of an owned 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 { /// Owned computer public class OwnComputer { /// Box present in collection public bool boxed; /// Capacity of first removable disk format public int cap1; /// Capacity of second removable disk format public int cap2; /// Primary CPU public int cpu1; /// Secondary CPU public int cpu2; /// Adquired date public string date; /// Computer's ID public int db_id; /// ID of first removable disk format public int disk1; /// ID of second removable disk format public int disk2; /// ID public int id; /// Original manuals present in collection public bool manuals; /// Frequency in MHz of primary CPU public float mhz1; /// Frequency in MHz of secondary CPU public float mhz2; /// Size in kibibytes of program RAM public int ram; /// Rigid disk public string rigid; /// Status public int status; /// Available for trade public bool trade; /// Size in kibibytes for video RAM public int vram; } }