PHP Classes

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

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

Contents

Class file image Download
using System.ComponentModel.DataAnnotations; namespace Jdb.Api.DTOs.Auth { public class RefreshTokenRequest { [Required] public string RefreshToken { get; set; } = string.Empty; } }