server-master/srcs/WingsAPI.Communication/Services/Service.cs
2026-02-10 18:21:30 +01:00

18 lines
No EOL
354 B
C#

using System;
using ProtoBuf;
namespace WingsAPI.Communication.Services
{
[ProtoContract]
public class Service
{
[ProtoMember(1)]
public string Id { get; set; }
[ProtoMember(2)]
public ServiceHealthStatus Status { get; set; }
[ProtoMember(3)]
public DateTime LastUpdate { get; set; }
}
}