GildedRose-Refactoring-Kata/csharp/Global.cs

20 lines
713 B
C#

using System;
namespace csharp
{
static public class Global
{
// Limits of the quality field.
public const int MAXIMUM_QUALITY = 50;
public const int MINIMUM_QUALITY = 0;
// Item names.
public const string NAME_ITEM_PLUS5_DEXTERITY = "+5 Dexterity Vest";
public const string NAME_ITEM_AGED_BRIE = "Aged Brie";
public const string NAME_ITEM_ELIXIR_MONGOOSE = "Elixir of the Mongoose";
public const string NAME_ITEM_SULFURAS = "Sulfuras, Hand of Ragnaros";
public const string NAME_ITEM_BACKSTAGE_PASSES = "Backstage passes to a TAFKAL80ETC concert";
public const string NAME_ITEM_CONJURED = "Conjured Mana Cake";
}
}