PersonalizedList.ts 509 B

1234567891011121314151617181920212223
  1. import {Str, Uid} from "pinia-orm/dist/decorators";
  2. import ApiModel from "~/models/ApiModel";
  3. /**
  4. * Ap2i Model : PersonalizedList
  5. *
  6. * @see https://gitlab.2iopenservice.com/opentalent/ap2i/-/blob/develop/src/Entity/Access/PersonalizedList.php
  7. */
  8. export class PersonalizedList extends ApiModel {
  9. static entity = 'personalized_lists'
  10. @Uid()
  11. declare id: number | string | null
  12. @Str(null)
  13. declare label:string|null
  14. @Str(null)
  15. declare entity:string|null
  16. @Str('')
  17. declare menuKey:string
  18. }