16 lines
334 B
C#
16 lines
334 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Entidades;
|
|
|
|
public partial class ServicioPropiedade
|
|
{
|
|
public int? Idpropiedad { get; set; }
|
|
|
|
public int? Idservicio { get; set; }
|
|
|
|
public virtual Propiedad? IdpropiedadNavigation { get; set; }
|
|
|
|
public virtual Servicio? IdservicioNavigation { get; set; }
|
|
}
|