mirror of
https://github.com/EpinelPS/EpinelPS.git
synced 2025-12-13 07:24:52 +01:00
21 lines
467 B
C#
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();
|
|
}
|
|
}
|
|
}
|