bajar cambios 4
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace compabetov2.database.modelos
|
||||
{
|
||||
internal 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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user