using System; using System.Collections.Generic; using PropertyChanged; namespace bdAsegasa.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; } }