Commit 51b3dc6e323105763bf819ba218f460dd1fcd27b
1 parent
86552bca5e
Exists in
master
and in
1 other branch
creado wrapper de tarjeta.
Showing
1 changed file
with
29 additions
and
0 deletions
Show diff stats
src/app/wrappers/tarjeta.ts
| ... | ... | @@ -0,0 +1,29 @@ |
| 1 | +export interface Tarjeta { | |
| 2 | + ID: number; | |
| 3 | + NOM: string; | |
| 4 | + NCO: string; | |
| 5 | + DTO: number; | |
| 6 | + DCO: number; | |
| 7 | + PAU: string; | |
| 8 | + BCO: number; | |
| 9 | + CBD: string; | |
| 10 | + CCA: number; | |
| 11 | + NEM: number; | |
| 12 | + NPR: string; | |
| 13 | + UPR: number; | |
| 14 | + FPR?: string; | |
| 15 | + ULIQ: number; | |
| 16 | + UFEC?: string; | |
| 17 | + CUIT: string; | |
| 18 | + PRO: number; | |
| 19 | + TIP: string; | |
| 20 | + E_HD: string; | |
| 21 | + C_HD: string; | |
| 22 | + COD_PRISMA: string; | |
| 23 | + PAGOELEC: boolean; | |
| 24 | + COD_POSNET: string; | |
| 25 | + ExtraCash: boolean; | |
| 26 | + MuestraPlanes: boolean; | |
| 27 | + CodPosnetLiquidacion: string; | |
| 28 | + nombreImagen?: string; | |
| 29 | +} | |
| 0 | 30 | \ No newline at end of file |