GildedRose-Refactoring-Kata/csharp/Item.cs

15 lines
318 B
C#

namespace csharp
{
public class Item
{
public string Name { get; set; }
public int SellIn { get; set; }
public int Quality { get; set; }
public override string ToString()
{
return this.Name + ", " + this.SellIn + ", " + this.Quality;
}
}
}