GildedRose-Refactoring-Kata/csharp/StrategyPatternExample/Global.cs

11 lines
198 B
C#

using System;
namespace csharp.StrategyPatternExample
{
static public class Global
{
public const int MAXIMUN_QUALITY = 50;
public const int MINIMUN_QUALITY = 0;
}
}