mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2025-12-12 20:32:15 +00:00
15 lines
318 B
C#
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;
|
|
}
|
|
}
|
|
}
|