Files
model/TelosysTools/models/InfiniMotion/Eintrittskarte.entity

11 lines
212 B
Plaintext

// Entity Eintrittskarte
#BaseModel
Eintrittskarte {
id: int { @Id @AutoIncremented @ObjectType } ;
show: Vorstellung { } ;
seat: Sitzplatz { } ;
code: string { @Unique } ;
state: Kartenstatus { } ;
}