Country.ts 384 B

1234567891011121314151617
  1. import ApiModel from "~/models/ApiModel";
  2. import {Str, Uid} from "pinia-orm/dist/decorators";
  3. /**
  4. * AP2i Model : Country
  5. *
  6. * @see https://gitlab.2iopenservice.com/opentalent/ap2i/-/blob/develop/src/Entity/Core/Country.php
  7. */
  8. export class Country extends ApiModel {
  9. static entity = 'countries'
  10. @Uid()
  11. declare id: number | string | null
  12. @Str('')
  13. declare name: string
  14. }