export enum IdentityType { IdCard = 0, Insurance, Passport, Military, Other } export class Address { city: string; districe: string; street?: string; } export class Identity { identityNo: string | null; identityType: IdentityType | null; } export class User { id?: string; mobile?: string; userName?: string; password?: string; avatar?: string; address?: Address; Birthdata?: string; identity?: Identity; }