From 97a9f319c399c0f607ab597fdd110507c8fdc38e Mon Sep 17 00:00:00 2001 From: Neil Dorin Date: Wed, 3 Feb 2021 14:10:08 -0700 Subject: [PATCH] Fixed access modifiers in interface --- .../Interfaces/Room/IHasRoomOn.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/essentials-framework/Essentials Core/PepperDashEssentialsBase/Interfaces/Room/IHasRoomOn.cs b/essentials-framework/Essentials Core/PepperDashEssentialsBase/Interfaces/Room/IHasRoomOn.cs index 5eafab9b..48f4cb9b 100644 --- a/essentials-framework/Essentials Core/PepperDashEssentialsBase/Interfaces/Room/IHasRoomOn.cs +++ b/essentials-framework/Essentials Core/PepperDashEssentialsBase/Interfaces/Room/IHasRoomOn.cs @@ -23,14 +23,14 @@ namespace PepperDash.Essentials.Core.Interfaces.Room /// /// Timer used for informing the UIs of a shutdown /// - SecondsCountdownTimer ShutdownPromptTimer { get; private set; } + SecondsCountdownTimer ShutdownPromptTimer { get; } /// /// /// - int ShutdownPromptSeconds { get; set; } - int ShutdownVacancySeconds { get; set; } - eShutdownType ShutdownType { get; private set; } + int ShutdownPromptSeconds { get; } + int ShutdownVacancySeconds { get; } + eShutdownType ShutdownType { get; } ///