mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2026-02-08 03:01:24 +00:00
7 lines
99 B
C#
7 lines
99 B
C#
namespace GildedRoseKata;
|
|
|
|
public interface IUpdateStrategy
|
|
{
|
|
void UpdateQuality(Item item);
|
|
}
|