PHP Classes

File: backend/dotnet/DTOs/Auth/AuthResponse.cs

Recommend this page to a friend!
  Packages of Everton C B Junior   Igreja Aberta   backend/dotnet/DTOs/Auth/AuthResponse.cs   Download  
File: backend/dotnet/DTOs/Auth/AuthResponse.cs
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Igreja Aberta
Church activity management application
Author: By
Last change:
Date: 12 days ago
Size: 305 bytes
 

Contents

Class file image Download
namespace Jdb.Api.DTOs.Auth { public class AuthResponse { public string Token { get; set; } = string.Empty; public DateTime ExpiresAt { get; set; } public string RefreshToken { get; set; } = string.Empty; public DateTime RefreshTokenExpiresAt { get; set; } } }