13 lines
284 B
Plaintext
13 lines
284 B
Plaintext
// Entity Eintrittskarte
|
|
|
|
#BaseModel
|
|
Eintrittskarte {
|
|
id: int { @Id @AutoIncremented @ObjectType } ;
|
|
show: Vorstellung { } ;
|
|
seat: Sitzplatz { } ;
|
|
code: string { @Unique @NotNull } ;
|
|
reserved: timestamp { @NotNull } ;
|
|
booked: timestamp { } ;
|
|
cancelled: timestamp {} ;
|
|
}
|