Files
open-gsio/packages/server/models/ContactRecord.ts
2025-06-24 17:32:59 -04:00

10 lines
220 B
TypeScript

import { types } from 'mobx-state-tree';
export default types.model('ContactRecord', {
message: types.string,
timestamp: types.string,
email: types.string,
firstname: types.string,
lastname: types.string,
});