10 lines
227 B
C#
10 lines
227 B
C#
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Entidades.Dto;
|
|
|
|
[NotMapped]
|
|
public class LoginDto
|
|
{
|
|
public string Usuario {get; set;} = string.Empty;
|
|
public string Contrasena {get; set;} = string.Empty;
|
|
} |