Files
Server/OwnChar.Server/Api/Endpoint/Implementations/CharactersApi.cs
Schedel Pascal 82485da5d2 uff, lot of work
2024-08-02 11:47:33 +02:00

38 lines
653 B
C#

using OwnChar.Server.Api;
using OwnChar.Server.Api.Endpoint;
namespace OwnChar.Server.Api.Endpoint.Implementations;
internal class CharactersApi(IServer server) : IApiEndpoint
{
public void Initialize(IApiBuilder builder)
{
throw new NotImplementedException();
}
private IResult GetCharacter(long characterId)
{
}
private IResult CreateGroupCharacter(string name, long groupId)
{
}
private IResult CreateUserCharacter(string name, long userId)
{
}
private IResult UpdateCharacter(long characterId)
{
}
private IResult DeleteCharacter(long characterId)
{
}
}