Files
gridpilot.gg/apps/website/lib/dtos/GetWalletOutputDto.ts
2025-12-17 18:01:47 +01:00

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;
}