Skip to content

Commit

Permalink
Merge pull request #191 from RJ-SMTR/feature/#187-cnab
Browse files Browse the repository at this point in the history
feat: cnab-dto
  • Loading branch information
williamfl2007 committed Feb 27, 2024
2 parents 26af1d5 + 4274d34 commit 100facd
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 100facd

Please sign in to comment.