export default interface User {
    id: string;
    username: string;
    analyticsEnabled: boolean;
    verified: boolean;
}
