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