Files
Fleetbase-Mirror-Repo/console/app/models/brand.js
2023-10-10 20:43:18 +08:00

14 lines
323 B
JavaScript

import Model, { attr } from '@ember-data/model';
export default class BrandModel extends Model {
/** @ids */
@attr('string') uuid;
@attr('string') logo_uuid;
@attr('string') icon_uuid;
/** @attributes */
@attr('string') default_theme;
@attr('string') logo_url;
@attr('string') icon_url;
}