24 lines
591 B
C#
24 lines
591 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using PropertyChanged;
|
|
|
|
namespace bdAsegasa.db;
|
|
|
|
[AddINotifyPropertyChangedInterface]
|
|
public partial class departamentosmiembros
|
|
{
|
|
public int idDepartamentosMiembros { get; set; }
|
|
|
|
public int idDepartamento { get; set; }
|
|
|
|
public int idUsuario { get; set; }
|
|
|
|
public int idPuesto { get; set; }
|
|
|
|
public virtual departamentos idDepartamentoNavigation { get; set; } = null!;
|
|
|
|
public virtual enumeraciones idPuestoNavigation { get; set; } = null!;
|
|
|
|
public virtual usuarios idUsuarioNavigation { get; set; } = null!;
|
|
}
|