/****************************************************************************** // Canary Islands Computer Museum Website // ---------------------------------------------------------------------------- // // Filename : Enums.cs // Author(s) : Natalia Portillo // // --[ 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 . // // ---------------------------------------------------------------------------- // 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 } public enum StatusType { TestedGood = 1, NotTested = 2, TestedBad = 3 } public enum CompanyStatus { /// Status is unknown or not set Unknown = 0, /// Company is still existing Active = 1, /// Company was sold, totally or partially Sold = 2, /// Company merged with another company to make yet another company Merged = 3, /// Company filled for bankruptcy Bankrupt = 4, /// Company ceased operations for reasons different to bankruptcy Defunct = 5, /// Company renamed possibly with a change of intentions Renamed = 6 } }