import { Rule, RuleType } from '@midwayjs/validate';

export class GetYs7TokenDTO {
    @Rule(RuleType.string().required())
    appKey: string;

    @Rule(RuleType.string().required())
    appSecret: string;
}