35 lines
778 B
C#
35 lines
778 B
C#
// <auto-generated> This file has been auto generated by EF Core Power Tools. </autogenerated>
|
|
#nullable enable
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace bdEmtusa.db;
|
|
|
|
public partial class channels
|
|
{
|
|
public uint id { get; set; }
|
|
|
|
public DateTime? creacion { get; set; }
|
|
|
|
public DateTime? modificacion { get; set; }
|
|
|
|
public uint n_modificaciones { get; set; }
|
|
|
|
public string? title { get; set; }
|
|
|
|
public string? description { get; set; }
|
|
|
|
public string? link { get; set; }
|
|
|
|
public DateTime? lastBuildDate { get; set; }
|
|
|
|
public string? generator { get; set; }
|
|
|
|
public string? language { get; set; }
|
|
|
|
public bool oculto { get; set; }
|
|
|
|
public virtual ICollection<items> items { get; set; } = new List<items>();
|
|
}
|