2025-03-01 20:38:45 -05:00

9 lines
130 B
C#

namespace QuestShare.Services
{
internal interface IService
{
void Initialize();
void Shutdown();
}
}