Files
marechai/Cicm.Database/Schemas/Enums.cs

68 lines
2.5 KiB
C#
Raw Normal View History

2018-04-13 17:33:36 +01:00
/******************************************************************************
// Canary Islands Computer Museum Website
// ----------------------------------------------------------------------------
//
// Filename : Enums.cs
// Author(s) : Natalia Portillo <claunia@claunia.com>
//
// --[ Description ] ----------------------------------------------------------
//
// Enumerations.
//
// --[ 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 enum NewsType
{
NewComputerInDb = 1,
NewConsoleInDb = 2,
NewComputerInCollection = 3,
NewConsoleInCollection = 4,
UpdatedComputerInDb = 5,
UpdatedConsoleInDb = 6,
UpdatedComputerInCollection = 7,
UpdatedConsoleInCollection = 8,
NewMoneyDonation = 9
}
2018-04-13 17:35:19 +01:00
public enum StatusType
{
TestedGood = 1,
NotTested = 2,
TestedBad = 3
}
2018-04-17 07:13:50 +01:00
public enum CompanyStatus
{
/// <summary>Status is unknown or not set</summary>
Unknown = 0,
/// <summary>Company is still existing</summary>
Active = 1,
/// <summary>Company was sold, totally or partially</summary>
Sold = 2,
/// <summary>Company merged with another company to make yet another company</summary>
Merged = 3,
/// <summary>Company filled for bankruptcy</summary>
Bankrupt = 4,
/// <summary>Company ceased operations for reasons different to bankruptcy</summary>
Defunct = 5
}
2018-04-13 17:33:36 +01:00
}