1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50module Duets.Data.World.Ids
module Common =
let bar = "bar"
let cafe = "cafe"
let lobby = "lobby"
let restaurant = "restaurant"
module Airport =
let securityControl = "security_control"
let boardingGate = "boarding_gate"
module Bookstore =
let readingRoom = "reading_room"
module CarDealer =
let showRoom = "show_room"
module Casino =
let casinoFloor = "casino_floor"
module ConcertSpace =
let backstage = "backstage"
let stage = "stage"
module Gym =
let changingRoom = "changing_room"
let gym = "gym"
module Home =
let kitchen = "kitchen"
let livingRoom = "living_room"
let bedroom = "bedroom"
module Metro =
let platform = "platform"
module Studio =
let masteringRoom = "mastering_room"
let recordingRoom = "recording_room"
module RehearsalRoom =
let room (n: int<_>) = $"rehearsal_room_{n}"
module Workshop =
let workshop = "workshop"
module Restaurant =
let kitchen = "kitchen"