20 lines
507 B
C#
20 lines
507 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using PropertyChanged;
|
|
|
|
namespace bdAsegasa.db;
|
|
|
|
[AddINotifyPropertyChangedInterface]
|
|
public partial class provincias
|
|
{
|
|
public string CodigoProvincia { get; set; } = null!;
|
|
|
|
public string? Nombre { get; set; }
|
|
|
|
public string? ComunidadAutonoma { get; set; }
|
|
|
|
public virtual ICollection<comarcas> comarcas { get; set; } = new List<comarcas>();
|
|
|
|
public virtual ICollection<municipios> municipios { get; set; } = new List<municipios>();
|
|
}
|