mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2025-12-12 04:12:13 +00:00
10 lines
188 B
C#
10 lines
188 B
C#
namespace GildedRoseKata
|
|
{
|
|
public class Item
|
|
{
|
|
public string Name { get; set; }
|
|
public int SellIn { get; set; }
|
|
public int Quality { get; set; }
|
|
}
|
|
}
|