Initial commit
This commit is contained in:
25
DAL/Comentario.cs
Executable file
25
DAL/Comentario.cs
Executable file
@@ -0,0 +1,25 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <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 DAL
|
||||
{
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
public partial class Comentario
|
||||
{
|
||||
public int id { get; set; }
|
||||
public int post_id { get; set; }
|
||||
public int user_id { get; set; }
|
||||
public string html { get; set; }
|
||||
|
||||
public virtual Post post { get; set; }
|
||||
public virtual User user { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user