Files
frontend/app/models/edition.js
Dainii feef600052
Some checks failed
CI / Lint (push) Failing after 14m49s
CI / Test (push) Failing after 7m55s
work on jwt auth
2025-01-08 16:49:27 +01:00

10 lines
183 B
JavaScript

import Model, { attr } from "@ember-data/model";
export default class EditionModel extends Model {
@attr name;
@attr theme;
@attr status;
@attr startDate;
@attr endDate;
}