/* Options: Date: 2026-09-21 22:53:19 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: http://clouddemo.pickeos.com:1337 //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: SaveArea.* //ExcludeTypes: //DefaultImports: */ export class AreaContent { public ID: number; public LCAddress: string; public PixelStart: number; public PixelStop: number; public AreaID: number; public Pos: number; public Reverse: boolean; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class Area { public AreaID: number; public Label: string; public StockroomID?: number; public Content: AreaContent[] = []; public NumberOfPixels: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/SaveArea/{Area}") export class SaveArea { /** @description Area */ // @ApiMember(Description="Area", IsRequired=true) public Area: Area; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'SaveArea'; } public getMethod() { return 'POST'; } public createResponse() {} }