refactor(backend): move all request/response types to a new Dto namespace
This commit is contained in:
parent
f8e6032449
commit
8bd4449804
21 changed files with 310 additions and 316 deletions
8
Foxnouns.Backend/Dto/Internal.cs
Normal file
8
Foxnouns.Backend/Dto/Internal.cs
Normal file
|
@ -0,0 +1,8 @@
|
|||
// ReSharper disable NotAccessedPositionalProperty.Global
|
||||
using Foxnouns.Backend.Database;
|
||||
|
||||
namespace Foxnouns.Backend.Dto;
|
||||
|
||||
public record RequestDataRequest(string? Token, string Method, string Path);
|
||||
|
||||
public record RequestDataResponse(Snowflake? UserId, string Template);
|
Loading…
Add table
Add a link
Reference in a new issue