38 lines
653 B
C#
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)
|
|
{
|
|
|
|
}
|
|
}
|