28 lines
564 B
TypeScript
28 lines
564 B
TypeScript
export interface CreateUserDto {
|
|
username: string;
|
|
email: string;
|
|
}
|
|
export interface UpdateUserDto {
|
|
id: string;
|
|
username?: string;
|
|
email?: string;
|
|
}
|
|
export interface ShortUserDto {
|
|
id: string;
|
|
username: string;
|
|
state: number;
|
|
authLevel: 0 | 1;
|
|
}
|
|
export interface DetailUserDto {
|
|
id: string;
|
|
orgid: string | null;
|
|
username: string;
|
|
email: string;
|
|
fname: string;
|
|
lname: string;
|
|
code: string | null;
|
|
type: string;
|
|
phone: string | null;
|
|
state: number;
|
|
}
|
|
//# sourceMappingURL=UserDto.d.ts.map
|