|
|
@@ -5,6 +5,7 @@ import {Attr, Num} from "pinia-orm/decorators";
|
|
|
import File from "~/models/Core/File";
|
|
|
import Place from "~/models/Place/Place";
|
|
|
import Country from "~/models/Core/Country";
|
|
|
+import Category from "~/models/Core/Category";
|
|
|
|
|
|
/**
|
|
|
* AP2i Model : Freemium / Event
|
|
|
@@ -83,5 +84,6 @@ export default class Event extends ApiModel {
|
|
|
declare priceMaxi: number | null
|
|
|
|
|
|
@Attr(() => [])
|
|
|
+ @IriEncoded(Category)
|
|
|
declare categories: Array<string> | null
|
|
|
}
|