Files
SanchoToro/bdGrupoSanchoToro/db/conceptosapuntes.cs
2026-01-26 13:12:47 +01:00

20 lines
517 B
C#

using System;
using System.Collections.Generic;
using PropertyChanged;
namespace bdGrupoSanchoToro.db;
[AddINotifyPropertyChangedInterface]
public partial class conceptosapuntes
{
public int idConcepto { get; set; }
public string Concepto { get; set; } = null!;
public string Codigo { get; set; } = null!;
public virtual ICollection<apuntes> apuntes { get; set; } = new List<apuntes>();
public virtual ICollection<apuntesmodelo> apuntesmodelo { get; set; } = new List<apuntesmodelo>();
}