GildedRose-Refactoring-Kata/csharpcore/Item.cs

15 lines
320 B
C#

namespace csharpcore
{
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;
}
}
}