41 lines
1.7 KiB
C#
41 lines
1.7 KiB
C#
//------------------------------------------------------------------------------
|
|
// <auto-generated>
|
|
// Este código se generó a partir de una plantilla.
|
|
//
|
|
// Los cambios manuales en este archivo pueden causar un comportamiento inesperado de la aplicación.
|
|
// Los cambios manuales en este archivo se sobrescribirán si se regenera el código.
|
|
// </auto-generated>
|
|
//------------------------------------------------------------------------------
|
|
|
|
namespace Exferia_EntityFramework
|
|
{
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
public partial class MAE_Prioridades
|
|
{
|
|
public MAE_Prioridades()
|
|
{
|
|
this.MYT_PlanMantenimientosLineas = new HashSet<MYT_PlanMantenimientosLineas>();
|
|
this.MYT_Previsiones = new HashSet<MYT_Previsiones>();
|
|
this.MYT_Configuracion = new HashSet<MYT_Configuracion>();
|
|
this.MYT_Partes = new HashSet<MYT_Partes>();
|
|
this.MAE_Clientes = new HashSet<MAE_Clientes>();
|
|
}
|
|
|
|
public long id { get; set; }
|
|
public string codigo { get; set; }
|
|
public string descripcion { get; set; }
|
|
public string colorFondo { get; set; }
|
|
public string colorLetra { get; set; }
|
|
public Nullable<int> orden { get; set; }
|
|
public Nullable<System.DateTime> fechaBorrado { get; set; }
|
|
|
|
public virtual ICollection<MYT_PlanMantenimientosLineas> MYT_PlanMantenimientosLineas { get; set; }
|
|
public virtual ICollection<MYT_Previsiones> MYT_Previsiones { get; set; }
|
|
public virtual ICollection<MYT_Configuracion> MYT_Configuracion { get; set; }
|
|
public virtual ICollection<MYT_Partes> MYT_Partes { get; set; }
|
|
public virtual ICollection<MAE_Clientes> MAE_Clientes { get; set; }
|
|
}
|
|
}
|