feat(contracts): add API DTOs and request/response contracts

This commit is contained in:
2024-12-17 12:00:00 -05:00
parent 9357cbe026
commit 7a09f8e2f6
20 changed files with 89 additions and 0 deletions
@@ -0,0 +1,5 @@
namespace IncidentOps.Contracts.Auth;
public record AuthResponse(string AccessToken, string RefreshToken, ActiveOrgDto ActiveOrg);
public record ActiveOrgDto(Guid Id, string Name, string Slug, string Role);