mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2026-02-16 15:01:28 +00:00
10 lines
124 B
C#
10 lines
124 B
C#
using System;
|
|
|
|
namespace csharp.Strategy
|
|
{
|
|
interface ICategoryStrategy
|
|
{
|
|
void Update(Item item);
|
|
}
|
|
}
|