// Copyright Epic Games, Inc. All Rights Reserved. namespace HordeServer.Server { /// /// Interface for a service which keeps track of whether we're during downtime /// public interface IDowntimeService { /// /// Returns true if downtime is currently active /// public bool IsDowntimeActive { get; } } }