export interface IFundBase { id: string; symbol: string; fundExchange: string; } export interface IFund extends IFundBase { assetId: string; } export interface IFundInput { id: string; assetId: string; symbol: string; fundExchange: string; } export interface IFundOutput extends IFundBase { assetId: string; } export interface IFundDeleteInput { id: string; }