Files
open-gsio/workers/site/models/ContactRecord.ts
geoffsee 33679583af init
2025-05-22 23:14:01 -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,
});