10 lines
144 B
TypeScript
10 lines
144 B
TypeScript
![]() |
class CreateUserDto {
|
||
|
id: number;
|
||
|
password: string;
|
||
|
realName: string;
|
||
|
roles: string[];
|
||
|
username: string;
|
||
|
}
|
||
|
|
||
|
export { CreateUserDto };
|