10 lines
181 B
Plaintext
10 lines
181 B
Plaintext
// Entity Sitzreihe
|
|
|
|
#BaseModel
|
|
Sitzreihe {
|
|
id: int { @Id @AutoIncremented @ObjectType } ;
|
|
hall: Kinosaal { } ;
|
|
position: int { @NotNull } ;
|
|
category: Sitzkategorie { } ;
|
|
}
|