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