diff --git a/daily-thought-frontend/src/types/user.ts b/daily-thought-frontend/src/types/user.ts new file mode 100644 index 0000000000000000000000000000000000000000..243df629fd2def17b4d47abdf52eb882d4859778 --- /dev/null +++ b/daily-thought-frontend/src/types/user.ts @@ -0,0 +1,7 @@ +export type User = { + FirstName: string, + LastName: string, + Username: string, + Avatar: string | null; + Colors: string[]; +} \ No newline at end of file