namespace OwnChar.ServerNew.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) { } }