These are representation of entities to be stored within your Relational Database. It defines the Struct of the data to be stored.

Boilerplate

model User {
	id Int @id @default(autoincrement())
	name String 
}