export interface UserRecord {
    key: string;
    value: any;
}
export interface IUserRecord {
    name: string;
    role: string;
    createdAt: string;
    lastLogin?: string;
}
