Files
frontend/app/models/person.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

8 lines
184 B
JavaScript

import Model, { attr } from "@ember-data/model";
export default class PersonModel extends Model {
@attr("string") firstname;
@attr("string") lastname;
@attr("date") birthday;
}