16 lines
369 B
C#
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>();
|
|
}
|