Files
EpinelPS/nksrv/LobbyServer/Msgs/Misc/GetMaintenanceNotice.cs
Mikhail Thompson 838240de58 Initial commit
2024-06-26 19:03:44 +03:00

22 lines
463 B
C#

using Google.Protobuf;
using nksrv.Utils;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace nksrv.LobbyServer.Msgs.Misc
{
[PacketPath("/maintenancenotice")]
public class GetMaintenanceNotice : LobbyMsgHandler
{
protected override async Task HandleAsync()
{
var r = new MaintenanceNoticeResponse();
WriteData(r);
}
}
}