/ src / models / RestaurantKind.ts
RestaurantKind.ts
 1  export enum RestaurantKind {
 2    AdministrativeRestaurant = "Restaurant administratif",
 3    ApprovedRestaurant = "Restaurant agréé",
 4    Brewery = "Brasserie",
 5    Cafeteria = "Cafétéria",
 6    CoffeeCorner = "Coffee Corner",
 7    CrousAndGo = "crous and go",
 8    FoodTruck = "Foodtruck",
 9    GroceryStore = "épicerie",
10    Kiosk = "Kiosque",
11    ManagedRestaurant = "Restaurant géré",
12    Pizzeria = "Pizzéria",
13    Restaurant = "Restaurant",
14    SandwichShop = "Sandwicherie",
15    Scooter = "Triporteur",
16    SelfService = "Libre-service",
17    Space = "Space"
18  }