Files
SanchoToro/bdGrupoSanchoToro/db/provincias.cs
2026-01-23 12:45:41 +01:00

16 lines
374 B
C#

using System;
using System.Collections.Generic;
using PropertyChanged;
namespace bdGrupoSanchoToro.db;
[AddINotifyPropertyChangedInterface]
public partial class provincias
{
public string CodigoProvincia { get; set; } = null!;
public string? Nombre { get; set; }
public virtual ICollection<municipios> municipios { get; set; } = new List<municipios>();
}