feat: license setting

This commit is contained in:
Tristan Yang
2022-07-11 20:24:00 +08:00
parent 45a147ae67
commit cb80f87033
5 changed files with 164 additions and 2 deletions
+6
View File
@@ -58,6 +58,12 @@ export interface LoginConfig {
metamask: boolean;
third_party: boolean;
}
export interface LicenseResponse {
domain: string;
created_at: string;
expired_at: string;
sign: boolean;
}
export interface CreateAdminDTO extends Pick<User, "email" | "name" | "gender"> {
password: string;
}