2026-03-30 13:06:03 +02:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Runtime.Serialization;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
|
|
namespace BS.Shared.DataContracts
|
|
|
|
|
|
{
|
|
|
|
|
|
[DataContract]
|
|
|
|
|
|
public class ServerStatusDC
|
|
|
|
|
|
{
|
|
|
|
|
|
[DataMember]
|
|
|
|
|
|
public string ServerTime { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
[DataMember]
|
|
|
|
|
|
public string Version { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
[DataMember]
|
2026-05-26 13:03:08 +02:00
|
|
|
|
public ServiceStatusDC DatabaseOk { get; set; }
|
2026-03-30 13:06:03 +02:00
|
|
|
|
|
|
|
|
|
|
[DataMember]
|
|
|
|
|
|
public List<ServiceStatusDC> Services { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|