10 lines
No EOL
234 B
C#
10 lines
No EOL
234 B
C#
namespace WingsEmu.Health
|
|
{
|
|
public interface IMaintenanceManager
|
|
{
|
|
string ServiceName { get; }
|
|
bool IsMaintenanceActive { get; }
|
|
void ActivateMaintenance();
|
|
void DeactivateMaintenance();
|
|
}
|
|
} |