mirror of
https://gitea.tendokyu.moe/Kayori/Medusa.net.git
synced 2026-09-22 22:38:00 +03:00
12 lines
248 B
C#
12 lines
248 B
C#
using System.Xml.Linq;
|
|
|
|
namespace Server.Services
|
|
{
|
|
public interface IHandlerService
|
|
{
|
|
public List<Type> Handlers { get; set; }
|
|
Task<XDocument> Handle(string model, string module, string method, XDocument body);
|
|
|
|
}
|
|
}
|