3 lines
145 B
TypeScript
3 lines
145 B
TypeScript
import { Adt, Category, City, User } from "@prisma/client";
|
|
|
|
export type AdtWithRelations = Adt & { category: Category; city: City; user: User }; |