1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-03-11 08:29:31 +01:00
Nicolas Florentin 043ff6d47e wip
2023-07-20 16:55:22 +02:00

9 lines
219 B
TypeScript

import { ReservationContext } from 'models/reservation';
const reservationContexts: Array<ReservationContext> = [
{ id: 1, name: 'Research' },
{ id: 2, name: 'Pedagogical' }
];
export default reservationContexts;