using System; using PhoenixLib.ServiceBus; using PhoenixLib.ServiceBus.Routing; namespace WingsEmu.Health { /// /// This message just acts as data holder not as a command like or /// /// [MessageType("service.status.update")] public class ServiceStatusUpdateMessage : IMessage { public string ServiceName { get; init; } public ServiceStatusType StatusType { get; init; } public DateTime LastUpdate { get; init; } } }