Files
incidentops/src/IncidentOps.Contracts/Auth/AuthResponse.cs
T

6 lines
209 B
C#
Raw Normal View History

namespace IncidentOps.Contracts.Auth;
public record AuthResponse(string AccessToken, string RefreshToken, ActiveOrgDto ActiveOrg);
public record ActiveOrgDto(Guid Id, string Name, string Slug, string Role);