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

18 lines
345 B
C#

using System;
using System.Collections.Generic;
using PropertyChanged;
namespace bdGrupoSanchoToro.db;
[AddINotifyPropertyChangedInterface]
public partial class bancos
{
public string Codigo { get; set; } = null!;
public string? Nombre { get; set; }
public string? BIC { get; set; }
public bool? Obsoleto { get; set; }
}