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

15 lines
No EOL
326 B
C#

using System;
using ProtoBuf;
namespace WingsAPI.Communication.Services.Requests
{
[ProtoContract]
public class ServiceScheduleGeneralMaintenanceRequest
{
[ProtoMember(1)]
public TimeSpan ShutdownTimeSpan { get; init; }
[ProtoMember(2)]
public string Reason { get; init; }
}
}