import {InitableModel} from "../../core/InitableModel"; export class UserExtra extends InitableModel { premiumSupport; objects:Array; constructor({init = null}) { super({init}); } hasPremiumSupport() { return this.premiumSupport && this.premiumSupport > (new Date().toISOString()); } getObjects() { return this.objects ? this.objects : []; } }