diff --git a/src/main/kotlin/com/wyattjmiller/entities/Recipe.kt b/src/main/kotlin/com/wyattjmiller/entities/Recipe.kt new file mode 100644 index 0000000..47a8f15 --- /dev/null +++ b/src/main/kotlin/com/wyattjmiller/entities/Recipe.kt @@ -0,0 +1,11 @@ +package com.wyattjmiller.entities + +import kotlinx.serialization.Serializable + +@Serializable +data class Recipe( + val id: Int, + val name: String, + val desc: String, + val ingredients: String, +) diff --git a/src/main/kotlin/com/wyattjmiller/entities/User.kt b/src/main/kotlin/com/wyattjmiller/entities/User.kt new file mode 100644 index 0000000..5f41818 --- /dev/null +++ b/src/main/kotlin/com/wyattjmiller/entities/User.kt @@ -0,0 +1,12 @@ +package com.wyattjmiller.entities + +import kotlinx.serialization.Serializable + +@Serializable +data class User( + val id: Int, + val firstName: String, + val lastName: String, + val emailAddress: String, + val password: String, +)