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