GildedRose-Refactoring-Kata/csharp/ItemType.cs

18 lines
269 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace csharp
{
internal enum ItemType
{
Normal,
BackstagePass,
Legendary,
Aged,
Conjured
}
}