Files

22 lines
560 B
C#
Raw Permalink Normal View History

2026-03-30 13:06:03 +02:00
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)]
2026-05-07 11:37:48 +02:00
[RequireApiAuthorization(ApiKeyName = WebSecretConfigSetting.AppStatusApiKey)]
2026-03-30 13:06:03 +02:00
ServerStatusDC GetStatus();
}
}