23 lines
569 B
C#
23 lines
569 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace compabetov2.database.modelos
|
|
{
|
|
public class LoginModel
|
|
{
|
|
public string usuario;
|
|
public string contra;
|
|
public string tipo;
|
|
public int fkEmpleado;
|
|
public LoginModel(string usuario, string contra, string tipo, int fkEmpleado = -1) {
|
|
this.usuario = usuario;
|
|
this.contra = contra;
|
|
this.tipo = tipo;
|
|
this.fkEmpleado = fkEmpleado;
|
|
}
|
|
}
|
|
}
|