export enum QuestionsActions {
  FETCH_QUESTIONS_REQUEST = 'questions/fetch',
  CREATE_QUESTION_REQUEST = 'questions/create',
  UPDATE_QUESTION_REQUEST = 'questions/update',
  DELETE_QUESTION_REQUEST = 'questions/delete',
  IMPORT_QUESTIONS_REQUEST = 'questions/import',
}
