mirror of
https://github.com/geoffsee/open-gsio.git
synced 2025-09-08 22:56:46 +00:00
11 lines
258 B
TypeScript
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;
|