using BeWo.Service.Attributes; using BS.Shared.DataContracts; using System; using System.Collections.Generic; using System.Linq; using System.ServiceModel.Web; using System.ServiceModel; using System.Text; using System.Threading.Tasks; namespace BeWo.Service.ServiceContracts.Enhanced { [ServiceContract] public interface IStatusService { [OperationContract] [WebGet(UriTemplate = "/Status", ResponseFormat = WebMessageFormat.Json)] [RequireApiAuthorization(ApiKeyName = WebSecretConfigSetting.AppStatusApiKey)] ServerStatusDC GetStatus(); } }