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