/** @description Basic structure for credentials */
export class Credentials {
  /** @description The username, used as the unique identifier for the account */
  username!: string;
  /** @description The password that will be sent in future requests */
  password!: string;
}
