Category.ts 298 B

1234567891011121314
  1. import { Uid } from 'pinia-orm/dist/decorators'
  2. import ApiResource from '~/models/ApiResource'
  3. /**
  4. * Category
  5. *
  6. * Represents a category details for an event.
  7. */
  8. export default class Category extends ApiResource {
  9. static entity = 'categories'
  10. @Uid()
  11. declare id: number | string | null
  12. }