UNPKG

183 BPlain TextView Raw
1import { Fonte } from '../fonte';
2import { Erro } from '../models/Erro';
3
4export class ItemModel {
5 public content: string;
6 public fonte: Fonte;
7 public errors: Erro[];
8}