16 lines
548 B
JavaScript
16 lines
548 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.ApplyWithdrawDto = void 0;
|
|
const openapi = require("@nestjs/swagger");
|
|
const swagger_1 = require("@nestjs/swagger");
|
|
const withdraw_model_1 = require("../../../model/withdraw.model");
|
|
class ApplyWithdrawDto extends (0, swagger_1.PickType)(withdraw_model_1.WithdrawModel, [
|
|
'amount',
|
|
'userBankId',
|
|
]) {
|
|
static _OPENAPI_METADATA_FACTORY() {
|
|
return {};
|
|
}
|
|
}
|
|
exports.ApplyWithdrawDto = ApplyWithdrawDto;
|
|
//# sourceMappingURL=withdraw.dto.js.map
|