8 lines
198 B
C#
8 lines
198 B
C#
namespace Entidades.Dto;
|
|
|
|
public class TokenDto{
|
|
public string Email { get; set; } = null!;
|
|
public string Token {get; set;} = String.Empty;
|
|
public string Redirect { get; set; } = String.Empty;
|
|
}
|