chat: add initial GuildsController
This commit is contained in:
parent
7b4cbd4fb7
commit
727f2f6ba2
23 changed files with 248 additions and 38 deletions
|
@ -1,6 +1,6 @@
|
|||
namespace Foxchat.Core.Models.Http;
|
||||
|
||||
public static class Apps
|
||||
public static class AppsApi
|
||||
{
|
||||
public record CreateRequest(string Name, string[] Scopes, string[] RedirectUris);
|
||||
public record CreateResponse(Ulid Id, string ClientId, string ClientSecret, string Name, string[] Scopes, string[] RedirectUris);
|
6
Foxchat.Core/Models/Http/GuildsApi.cs
Normal file
6
Foxchat.Core/Models/Http/GuildsApi.cs
Normal file
|
@ -0,0 +1,6 @@
|
|||
namespace Foxchat.Core.Models.Http;
|
||||
|
||||
public static class GuildsApi
|
||||
{
|
||||
public record CreateGuildRequest(string Name);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue