mirror of
https://github.com/fleetbase/fleetbase.git
synced 2026-01-06 22:48:19 +00:00
14 lines
323 B
JavaScript
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;
|
|
}
|