Table of Contents

Struct MailAccessToken

Namespace
arolariu.Backend.Core.Auth.Models
Assembly
arolariu.Backend.Core.Auth.dll

The model for the mail access token.

internal record struct MailAccessToken : IEquatable<MailAccessToken>
Implements
Inherited Members

Constructors

MailAccessToken(string, string, int)

The model for the mail access token.

public MailAccessToken(string access_token, string token_type, int expires_in)

Parameters

access_token string
token_type string
expires_in int

Properties

access_token

public string access_token { readonly get; set; }

Property Value

string

expires_in

public int expires_in { readonly get; set; }

Property Value

int

token_type

public string token_type { readonly get; set; }

Property Value

string