Created
January 10, 2026 12:58
-
-
Save andfadeev/c27425098d40a1ec1f67fd4fc1ae1295 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| pub type User { | |
| User( | |
| id: Int, | |
| username: Option(String), | |
| email: Option(String), | |
| userpic: String, | |
| reg_date: Timestamp, | |
| short_about: Option(String), | |
| about: Option(String), | |
| fio: Option(String), | |
| is_admin: Option(Bool), | |
| premium: Option(Bool), | |
| last_active_time: Option(Timestamp), | |
| contacts: Option(String), | |
| parsed_contacts: Option(Contacts), | |
| ) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment