6 lines
209 B
C#
6 lines
209 B
C#
|
|
namespace IncidentOps.Contracts.Auth;
|
||
|
|
|
||
|
|
public record AuthResponse(string AccessToken, string RefreshToken, ActiveOrgDto ActiveOrg);
|
||
|
|
|
||
|
|
public record ActiveOrgDto(Guid Id, string Name, string Slug, string Role);
|