Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add DateTimeOffset property for simpler usage #280

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update FirebaseToken.cs
  • Loading branch information
Thaina committed Dec 31, 2020
commit a49c2991120b46a9608154a73f7c3b9e34b4402c
2 changes: 2 additions & 0 deletions FirebaseAdmin/FirebaseAdmin/Auth/FirebaseToken.cs
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 56,7 @@ internal FirebaseToken(Args args)
/// on or after which the token MUST NOT be accepted for processing.
/// </summary>
public long ExpirationTimeSeconds { get; }

/// <summary>
/// Gets the expiration time claim that identifies the expiration time
/// on or after which the token MUST NOT be accepted for processing.
Expand All @@ -67,6 68,7 @@ internal FirebaseToken(Args args)
/// issued.
/// </summary>
public long IssuedAtTimeSeconds { get; }

/// <summary>
/// Gets the issued at claim that identifies the time at which the JWT was
/// issued.
Expand Down