18 lines
337 B
C#
18 lines
337 B
C#
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; }
|
|
}
|