GildedRose-Refactoring-Kata/csharp.NUnit/GildedRose/IUpdateStrategy.cs
2025-04-01 14:10:32 +02:00

7 lines
99 B
C#

namespace GildedRoseKata;
public interface IUpdateStrategy
{
void UpdateQuality(Item item);
}