Files
marechai/Cicm.Database/Schemas/OwnComputer.cs
2018-04-12 10:20:31 +01:00

53 lines
1.9 KiB
C#

/******************************************************************************
// Canary Islands Computer Museum Website
// ----------------------------------------------------------------------------
//
// Filename : OwnComputer.cs
// Author(s) : Natalia Portillo <claunia@claunia.com>
//
// --[ 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 <http://www.gnu.org/licenses/>.
//
// ----------------------------------------------------------------------------
// Copyright © 2003-2018 Natalia Portillo
*******************************************************************************/
namespace Cicm.Database.Schemas
{
public class OwnComputer
{
public int id;
public int db_id;
public string date;
public int status;
public bool trade;
public bool boxed;
public bool manuals;
public int cpu1;
public float mhz1;
public int cpu2;
public float mhz2;
public int ram;
public int vram;
public string rigid;
public int disk1;
public int cap1;
public int disk2;
public int cap2;
}
}