import { Category } from "./category.enum"; export class Account { id?: number; name?: string; password?: string; avatar?: string; phone?: string; charactarId?: number; category?: Category; createTime?: number; deleted?: boolean; };