Files
open-gsio/workers/site/models/FeedbackRecord.ts
geoffsee 33679583af init
2025-05-22 23:14:01 -04:00

11 lines
258 B
TypeScript

// FeedbackRecord.ts
import { types } from "mobx-state-tree";
const FeedbackRecord = types.model("FeedbackRecord", {
feedback: types.string,
timestamp: types.string,
user: types.optional(types.string, "Anonymous"),
});
export default FeedbackRecord;