Files
model/TelosysTools/models/InfiniMotion/Eintrittskarte.entity
2025-11-09 21:45:45 +01:00

11 lines
219 B
Plaintext

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