10 lines
319 B
TypeScript
10 lines
319 B
TypeScript
export class AutoCreateAccountCommand {
|
|
constructor(
|
|
public readonly deviceId: string,
|
|
public readonly deviceName: string | undefined,
|
|
public readonly inviterReferralCode: string | undefined,
|
|
public readonly provinceCode: string | undefined,
|
|
public readonly cityCode: string | undefined,
|
|
) {}
|
|
}
|