Skip to content

Instantly share code, notes, and snippets.

@andfadeev
Created January 10, 2026 12:58
Show Gist options
  • Select an option

  • Save andfadeev/c27425098d40a1ec1f67fd4fc1ae1295 to your computer and use it in GitHub Desktop.

Select an option

Save andfadeev/c27425098d40a1ec1f67fd4fc1ae1295 to your computer and use it in GitHub Desktop.
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