/**
 * Class model that represents an application user
 */
export class User {
  /**
   * Name of the user
   */
  declare username: string

  /**
   * List of roles
   */
  declare roles: string[]
}
