24 lines
599 B
C#
24 lines
599 B
C#
namespace ULA.Davivienda.PrendarioModel.Prendario
|
|
{
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Data.Entity.Spatial;
|
|
|
|
[Table("Prendario.RolUsuario")]
|
|
public partial class RolUsuario
|
|
{
|
|
[Key]
|
|
[StringLength(10)]
|
|
public string Usuario { get; set; }
|
|
|
|
public int? Rol { get; set; }
|
|
|
|
public int? Filial { get; set; }
|
|
|
|
public int? Oficina { get; set; }
|
|
|
|
public bool? ApruebaCustodia { get; set; }
|
|
}
|
|
}
|