Skip to content

Commit

Permalink
feat: cnab-dto
Browse files Browse the repository at this point in the history
  • Loading branch information
yxuo committed Feb 27, 2024
1 parent 41b0b66 commit 4274d34
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions src/cnab/dto/cnab.dto.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
import { ICnab240_104DetalheA } from '../interfaces/cnab-240/104/cnab-240-104-detalhe-a.interface';
import { ICnab240_104DetalheB } from '../interfaces/cnab-240/104/cnab-240-104-detalhe-b.interface';
import { ICnab240_104HeaderArquivo } from '../interfaces/cnab-240/104/cnab-240-104-header-arquivo.interface';
import { ICnab240_104HeaderLote } from '../interfaces/cnab-240/104/cnab-240-104-header-lote.interface';
import { ICnab240_104TrailerArquivo } from '../interfaces/cnab-240/104/cnab-240-104-trailer-arquivo.interface';
import { ICnab240_104TrailerLote } from '../interfaces/cnab-240/104/cnab-240-104-trailer-lote.interface';

export class CnabDto {
headerArquivo: ICnab240_104HeaderArquivo;
lotes: {
headerLote: ICnab240_104HeaderLote;
registros: {
detalheA: ICnab240_104DetalheA;
detalheB: ICnab240_104DetalheB;
}[];
trailerLote: ICnab240_104TrailerLote;
}[];
trailerArquivo: ICnab240_104TrailerArquivo;
}

0 comments on commit 4274d34

Please sign in to comment.