Files
EpinelPS/nksrv/IntlServer/IntlMinocerSetStatus.cs
Mikhail Thompson 838240de58 Initial commit
2024-06-26 19:03:44 +03:00

21 lines
467 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using EmbedIO;
namespace nksrv.IntlServer
{
public class IntlMinocerSetStatus : IntlMsgHandler
{
public override bool RequiresAuth => true;
protected override async Task HandleAsync()
{
var c = await ctx.GetRequestBodyAsStringAsync();
throw new NotImplementedException();
}
}
}