16 lines
431 B
C#
16 lines
431 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace bdHerramientaCACOA.db;
|
|
|
|
public partial class provincias
|
|
{
|
|
public string CodigoProvincia { get; set; } = null!;
|
|
|
|
public string? Nombre { get; set; }
|
|
|
|
public virtual ICollection<conveniocolectivo> conveniocolectivo { get; set; } = new List<conveniocolectivo>();
|
|
|
|
public virtual ICollection<municipios> municipios { get; set; } = new List<municipios>();
|
|
}
|