PHP Classes

File: backend/dotnet/Models/PasswordResetToken.cs

Recommend this page to a friend!
  Packages of Everton C B Junior   Igreja Aberta   backend/dotnet/Models/PasswordResetToken.cs   Download  
File: backend/dotnet/Models/PasswordResetToken.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: 503 bytes
 

Contents

Class file image Download
using System.ComponentModel.DataAnnotations; namespace Jdb.Api.Models { public class PasswordResetToken { [Key] public long Id { get; set; } public long UserId { get; set; } [Required] [MaxLength(128)] public string TokenHash { get; set; } = string.Empty; public DateTime ExpiresAt { get; set; } public DateTime? UsedAt { get; set; } public DateTime CreatedAt { get; set; } public User? User { get; set; } } }