export interface ILoanBase { id: string; interest: string; description: string; } export interface ILoan extends ILoanBase { assetId: string; } export interface ILoanInput { id: string; assetId: string; interest: string; description: string; } export interface ILoanOutput extends ILoanBase { assetId: string; } export interface ILoanDeleteInput { id: string; }