17 lines
306 B
C#
17 lines
306 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using PropertyChanged;
|
|
|
|
namespace bdAsegasa.db;
|
|
|
|
[AddINotifyPropertyChangedInterface]
|
|
public partial class epiban
|
|
{
|
|
/// <summary>
|
|
/// tabla entidad
|
|
/// </summary>
|
|
public int identidad { get; set; }
|
|
|
|
public string? IBAN { get; set; }
|
|
}
|