///<reference path="IRelatorioFonteParametro.d.ts"/>
///<reference path="IRelatorioCredencial.d.ts"/>
/**
 * Created by jd on 19/10/2015.
 */

interface IRelatorioFonte
{
    RelatorioFonteID?:number;
    Nome?:string;
    Descricao?:string;
    Arquivo:string;
    Imagem?:string;
    RelatorioCredencialID?:number;
    CriadoEm?: string;
    EditadoEm?: string;
    DeletadoEm?: string;
    RelatorioFonteParametro?:IRelatorioFonteParametro[];
    RelatorioCredencial?:IRelatorioCredencial;
}