Task/refactor PortfolioDividends interface to PortfolioDividendsResponse interface (#5773)
* Refactor PortfolioDividends to PortfolioDividendsResponsepull/5775/head
parent
5188544c9b
commit
5bcc2e9648
@ -1,5 +0,0 @@
|
||||
import { InvestmentItem } from './investment-item.interface';
|
||||
|
||||
export interface PortfolioDividends {
|
||||
dividends: InvestmentItem[];
|
||||
}
|
||||
@ -0,0 +1,5 @@
|
||||
import { InvestmentItem } from '../investment-item.interface';
|
||||
|
||||
export interface PortfolioDividendsResponse {
|
||||
dividends: InvestmentItem[];
|
||||
}
|
||||
Loading…
Reference in new issue