import {CryptoTrading} from "./CryptoTrading"; /** * Represents class of Crypto execution of user. */ export interface UserCryptoExecution extends CryptoTrading { /** * Name of user. * @type {string} */ UserName: string; }