mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2026-02-15 22:41:30 +00:00
11 lines
198 B
C#
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;
|
|
}
|
|
}
|