/**
 * Access scope enum for program access user mapping
 * Defines what level of access a mapped user has
 */
export enum AccessScopeEnum {
  /**
   * User can only view the program details
   * Cannot register for the program
   */
  VIEW_ONLY = 'VIEW_ONLY',

  /**
   * User can view and register for the program
   */
  VIEW_AND_REGISTER = 'VIEW_AND_REGISTER',
}
