14 lines
295 B
C#
14 lines
295 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Entidades;
|
|
|
|
public partial class TipoPropiedad
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public string Descripcion { get; set; } = null!;
|
|
|
|
public virtual ICollection<Propiedade> Propiedades { get; set; } = new List<Propiedade>();
|
|
}
|