csharp
public record class SignInResponseWhat the gate hands back: a bearer token and who it says you are.
Fields and properties (3)
public string TokenCarried on every later request. Opaque — the client cannot read or forge it.
public Guid AccountWhich account, so a client can tell two of its own logins apart.
public DateTimeOffset ExpiresWhen it stops working. Sign in again; there is no refresh.
Methods (1)
public SignInResponse(string Token, Guid Account, DateTimeOffset Expires)What the gate hands back: a bearer token and who it says you are.
Used by (8)
- GateClientVixen.Live.Client
- GateClientTestsVixen.Live.Client.Tests
- GateConnectionVixen.Live.Client
- GateConnectionTestsVixen.Live.Client.Tests
- GateJsonVixen.Live.Abstractions
- GateProtocolTestsVixen.Live.Abstractions.Tests
- GateServiceVixen.Live.Gate
- GateServiceTestsVixen.Live.Gate.Tests