9 lines
137 B
Plaintext
9 lines
137 B
Plaintext
// Entity Sitzplatz
|
|
|
|
#BaseModel
|
|
Sitzplatz {
|
|
id: int { @Id @AutoIncremented } ;
|
|
row: Sitzreihe { } ;
|
|
position: int { @NotNull } ;
|
|
}
|