11 lines
219 B
Plaintext
11 lines
219 B
Plaintext
// Entity Eintrittskarte
|
|
|
|
#BaseModel
|
|
Eintrittskarte {
|
|
id: int { @Id @AutoIncremented @ObjectType } ;
|
|
show: Vorstellung { } ;
|
|
seat: Sitzplatz { } ;
|
|
code: string { @Unique @NotNull } ;
|
|
order: Bestellung { } ;
|
|
}
|