23 lines
715 B
C#
23 lines
715 B
C#
// <auto-generated> This file has been auto generated by EF Core Power Tools. </auto-generated>
|
|
#nullable enable
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace bdAntifraudeMYSQL.db;
|
|
|
|
public partial class HORARIOS
|
|
{
|
|
public long IDHORARIO { get; set; }
|
|
|
|
public string? DESCRIPCION { get; set; }
|
|
|
|
public string? CODIGOANTIGUO { get; set; }
|
|
|
|
public virtual ICollection<EXCEPCIONESHORARIOS> EXCEPCIONESHORARIOS { get; set; } = new List<EXCEPCIONESHORARIOS>();
|
|
|
|
public virtual ICollection<HORARIOSPERSONAS> HORARIOSPERSONAS { get; set; } = new List<HORARIOSPERSONAS>();
|
|
|
|
public virtual ICollection<TURNOSTEMPORALES> TURNOSTEMPORALES { get; set; } = new List<TURNOSTEMPORALES>();
|
|
}
|