mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2026-02-15 06:21:29 +00:00
10 lines
117 B
C#
10 lines
117 B
C#
using System;
|
|
|
|
namespace csharp
|
|
{
|
|
public interface IGildedRoseApp
|
|
{
|
|
void UpdateQuality();
|
|
}
|
|
}
|