From 82f78bf06861741ff614a21f631fdd1392993a01 Mon Sep 17 00:00:00 2001 From: Neil Dorin Date: Fri, 26 Apr 2024 12:08:26 -0600 Subject: [PATCH] feat: adds StarShutdown method to IShutdownPromptTimer --- src/PepperDash.Essentials.Core/Room/Interfaces.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/PepperDash.Essentials.Core/Room/Interfaces.cs b/src/PepperDash.Essentials.Core/Room/Interfaces.cs index ca7df3ae..640dc91f 100644 --- a/src/PepperDash.Essentials.Core/Room/Interfaces.cs +++ b/src/PepperDash.Essentials.Core/Room/Interfaces.cs @@ -77,9 +77,11 @@ namespace PepperDash.Essentials.Core SecondsCountdownTimer ShutdownPromptTimer { get; } void SetShutdownPromptSeconds(int seconds); + + void StartShutdown(eShutdownType type); } - /// + /// /// Describes a room with a tech password /// public interface ITechPassword