Advertisement
Guest User

Code

a guest
May 25th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.46 KB | None | 0 0
  1.  public class Entrada
  2.     {
  3.  
  4.         public int Id { get; set; }
  5.         public string Titulo { get; set; }
  6.         public string Cuerpo { get; set; }
  7.         public IList<Etiqueta> Etiquetas { get; set; }
  8.         public Usuario Usuario { get; set; }
  9.     }
  10.  
  11.     public class Usuario
  12.     {
  13.         public int Id { get; set; }
  14.         public string Nombre { get; set; }
  15.         public string Password { get; set; }
  16.         public IList<Entrada> Entradas { get; set; }
  17.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement