/**
 * Provider-neutral role a registrant takes within an online session. Mirrors the
 * Zoom-specific `ZoomRole` value-for-value so a provider can map straight across;
 * lives in `common` so the neutral online-session layer never imports from `zoom`.
 */
export enum ParticipantRole {
  PANELIST = 'Panelist',
  ATTENDEE = 'Attendee',
}
