| 1234567891011121314151617181920212223242526 |
- import { Str, Uid } from 'pinia-orm/dist/decorators'
- import ApiResource from '~/models/ApiResource'
- /**
- * Event Category model
- *
- * Represents a category for events with family, subfamily, and gender information
- */
- export default class EventCategory extends ApiResource {
- static entity = 'event-categories'
- @Uid()
- declare id: number | string | null
- @Str('')
- declare label: string
- @Str('')
- declare famillyLabel: string
- @Str('')
- declare subfamillyLabel: string
- @Str('')
- declare genderLabel: string
- }
|