Files
2025-07-25 12:56:07 +02:00

16 lines
369 B
C#

using System;
using System.Collections.Generic;
namespace bdHerramientaCACOA.db;
public partial class comarcas
{
public string CodigoComarca { get; set; } = null!;
public string CodigoProvincia { get; set; } = null!;
public string? Nombre { get; set; }
public virtual ICollection<municipios> municipios { get; set; } = new List<municipios>();
}