mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2025-12-12 20:32:15 +00:00
Small Refactoring c# projects, e.g. * add days * remove StartupObject * Fix Approval tests for NUnit * Use Environment.NewLine in Xunit tests * Added + fixed README.md * Removed global.json
8 lines
161 B
C#
8 lines
161 B
C#
namespace GildedRoseKata;
|
|
|
|
public class Item
|
|
{
|
|
public string Name { get; set; }
|
|
public int SellIn { get; set; }
|
|
public int Quality { get; set; }
|
|
} |