1
0
mirror of https://github.com/1Panel-dev/1Panel.git synced 2025-03-15 10:14:44 +08:00
2022-09-02 11:43:58 +08:00

19 lines
393 B
Go

import { CommonModel, ReqPage } from '.';
export namespace User {
export interface User extends CommonModel {
name: string;
email: string;
password: string;
}
export interface UserCreate {
username: string;
email: string;
}
export interface ReqGetUserParams extends ReqPage {
info?: string;
email?: string;
}
}