Skip to content

Commit

Permalink
feat: create customer model
Browse files Browse the repository at this point in the history
  • Loading branch information
aleixo-dev committed May 20, 2024
1 parent 8034719 commit 1cd0d63
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/main/kotlin/com/example/models/Customer.kt
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
package com.example.models

import kotlinx.serialization.Serializable

@Serializable
data class Customer(
val id : String,
val firstName : String,
val lastName : String,
val email : String
)

val customerStorage = mutableListOf<Customer>()

0 comments on commit 1cd0d63

Please sign in to comment.