This repository has been archived on 2022-12-12. You can view files and clone it, but cannot push or open issues or pull requests.
GiftGenie/models/Event.js

13 lines
280 B
JavaScript

import { v4 as generateUniqueKey } from "uuid";
export class Event {
constructor(name, date, category) {
this._key = generateUniqueKey();
this._name = name;
this._date = date;
this._category = category;
this._giftList = [];
this._personList = [];
}
}