Foxnouns.NET/Foxnouns.Frontend/app/lib/api/user.ts

13 lines
244 B
TypeScript

export type User = {
id: string;
username: string;
display_name: string | null;
bio: string | null;
member_title: string | null;
avatar_url: string | null;
links: string[];
};
export type UserSettings = {
dark_mode: boolean | null;
};