/**
 * Enum for the attendance method
 * @author Gabe Abrams
 */
enum AttendanceMethod {
  InPerson = 'in-person',
  Live = 'live',
  Async = 'async',
  Excused = 'excused',
}

export default AttendanceMethod;
