primera version estable
This commit is contained in:
34
bdEmtusa/db/channels.cs
Normal file
34
bdEmtusa/db/channels.cs
Normal file
@@ -0,0 +1,34 @@
|
||||
// <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>();
|
||||
}
|
||||
18
bdEmtusa/db/configuracion.cs
Normal file
18
bdEmtusa/db/configuracion.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
// <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 configuracion
|
||||
{
|
||||
public int id { get; set; }
|
||||
|
||||
public string codigo { get; set; } = null!;
|
||||
|
||||
public string? grupo { get; set; }
|
||||
|
||||
public string? valor { get; set; }
|
||||
}
|
||||
20
bdEmtusa/db/historico.cs
Normal file
20
bdEmtusa/db/historico.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
// <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 historico
|
||||
{
|
||||
public uint id { get; set; }
|
||||
|
||||
public DateTime? fechaHora { get; set; }
|
||||
|
||||
public uint? id_channel { get; set; }
|
||||
|
||||
public uint? id_item { get; set; }
|
||||
|
||||
public string? descripcion { get; set; }
|
||||
}
|
||||
38
bdEmtusa/db/items.cs
Normal file
38
bdEmtusa/db/items.cs
Normal file
@@ -0,0 +1,38 @@
|
||||
// <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 items
|
||||
{
|
||||
public uint id { get; set; }
|
||||
|
||||
public uint? id_channel { 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? link { get; set; }
|
||||
|
||||
public string? guid { get; set; }
|
||||
|
||||
public bool? guidIsPermaLink { get; set; }
|
||||
|
||||
public string? description { get; set; }
|
||||
|
||||
public string? category { get; set; }
|
||||
|
||||
public DateTime? pubDate { get; set; }
|
||||
|
||||
public bool oculto { get; set; }
|
||||
|
||||
public virtual channels? id_channelNavigation { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user