15 lines
394 B
C#
15 lines
394 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace IntegrationTests.Models
|
|
{
|
|
public partial class PasswordResetRequest
|
|
{
|
|
public System.Guid Id { get; set; }
|
|
public string UserId { get; set; }
|
|
public System.Guid Token { get; set; }
|
|
public System.DateTime ValidUntil { get; set; }
|
|
public virtual AspNetUser AspNetUser { get; set; }
|
|
}
|
|
}
|