UNPKG

ember-data-lexascms

Version:

The officially supported addon for using LexasCMS with Ember Data.

15 lines (12 loc) 261 B
import Model, { attr } from '@ember-data/model'; export default class LexascmsCoreImageModel extends Model { @attr assetId; @attr fileSize; @attr fileName; @attr width; @attr height; @attr altText; @attr format; @attr mimeType; @attr url; }