mirror of
https://github.com/geoffsee/open-gsio.git
synced 2025-09-08 22:56:46 +00:00
init
This commit is contained in:
10
workers/site/models/FeedbackRecord.ts
Normal file
10
workers/site/models/FeedbackRecord.ts
Normal file
@@ -0,0 +1,10 @@
|
||||
// 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;
|
Reference in New Issue
Block a user