import { Field, Model, type ModelToType } from "@fabric/domain"; export const ProjectModel = Model.aggregateFrom("projects", { name: Field.string(), description: Field.string(), userId: Field.reference({ targetModel: "users", }), }); export type ProjectModel = typeof ProjectModel; export type Project = ModelToType;