9 lines
197 B
TypeScript
9 lines
197 B
TypeScript
import type { WalletDto } from './WalletDto';
|
|
|
|
/**
|
|
* Get wallet output data transfer object
|
|
* Output containing wallet information
|
|
*/
|
|
export interface GetWalletOutputDto {
|
|
wallet: WalletDto;
|
|
} |