/**
 * A specific time window where a user can get an attendance point
 * @author Gabe Abrams
 */
enum PointWindow {
  Day = 'Day',
  Week = 'Week',
  Once = 'Once',
}

export default PointWindow;
