Fixed access modifiers in interface

This commit is contained in:
Neil Dorin
2021-02-03 14:10:08 -07:00
parent 46ec92cb13
commit 97a9f319c3

View File

@@ -23,14 +23,14 @@ namespace PepperDash.Essentials.Core.Interfaces.Room
/// <summary>
/// Timer used for informing the UIs of a shutdown
/// </summary>
SecondsCountdownTimer ShutdownPromptTimer { get; private set; }
SecondsCountdownTimer ShutdownPromptTimer { get; }
/// <summary>
///
/// </summary>
int ShutdownPromptSeconds { get; set; }
int ShutdownVacancySeconds { get; set; }
eShutdownType ShutdownType { get; private set; }
int ShutdownPromptSeconds { get; }
int ShutdownVacancySeconds { get; }
eShutdownType ShutdownType { get; }
/// <summary>