forked from xiangwang25/whale-town-end-v2
14 lines
487 B
TypeScript
14 lines
487 B
TypeScript
import { ApiProperty } from '@nestjs/swagger';
|
|
import { IsString, Length, Matches } from 'class-validator';
|
|
|
|
export class UpdatePlayerAppearanceDto {
|
|
@ApiProperty({
|
|
description: '要穿戴的角色皮肤ID',
|
|
example: 'human_whale_directional_v2_8x4',
|
|
})
|
|
@IsString({ message: '皮肤ID必须是字符串' })
|
|
@Length(1, 100, { message: '皮肤ID长度需在1-100字符之间' })
|
|
@Matches(/^[A-Za-z0-9_:-]+$/, { message: '皮肤ID格式不正确' })
|
|
skin_id!: string;
|
|
}
|