Files
natsdotnet/src/NATS.Server/Auth/AuthResult.cs
2026-02-23 06:21:51 -05:00

12 lines
359 B
C#

namespace NATS.Server.Auth;
public sealed class AuthResult
{
public required string Identity { get; init; }
public string? AccountName { get; init; }
public Permissions? Permissions { get; init; }
public DateTimeOffset? Expiry { get; init; }
public int MaxJetStreamStreams { get; init; }
public string? JetStreamTier { get; init; }
}