11 lines
227 B
C#
11 lines
227 B
C#
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Entidades.Dto;
|
|
|
|
[NotMapped]
|
|
public class LoginDto
|
|
{
|
|
public string Email {get; set;} = string.Empty;
|
|
public string Contraseña {get; set;} = string.Empty;
|
|
}
|