begin new and last rework

This commit is contained in:
2024-07-18 14:44:29 +02:00
parent abfc997ac1
commit 1a976fc9ef
26 changed files with 444 additions and 101 deletions

View File

@@ -0,0 +1,48 @@
namespace OwnChar.ServerNew.Api.Endpoint.Implementations;
internal class GroupsApi(IServer server) : IApiEndpoint
{
public void Initialize(IApiBuilder builder)
{
}
private IResult GetGroups()
{
}
private IResult GetGroups(long characterId)
{
}
private IResult GetGroup(long groupId)
{
}
private IResult CreateGroup(string name)
{
}
private IResult UpdateGroup(int groupId, string name)
{
}
private IResult DeleteGroup(int groupId)
{
}
private IResult AddMember(int groupId, long memberId)
{
}
private IResult RemoveMember(int groupId, long memberId)
{
}
}