Make birthday optional

This commit is contained in:
Fabian Stamm 2023-04-14 15:46:00 +02:00
parent cc1696a429
commit dd39ece408
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ type Profile {
id: string; id: string;
name: string; name: string;
username: string; username: string;
birthday: int; birthday?: int;
gender: Gender; gender: Gender;
} }