Skip to content

Commit

Permalink
add :: entity
Browse files Browse the repository at this point in the history
  • Loading branch information
rudeh2926 committed Feb 26, 2024
1 parent c6e981d commit bc161e6
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/main/kotlin/com/xaquare/xquarebackoffice/domain/entity/User.kt
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
package com.xaquare.xquarebackoffice.domain.entity

import java.util.UUID
import javax.persistence.Entity
import javax.persistence.Id

@Entity
class User (
@Id
val id: UUID,
)

0 comments on commit bc161e6

Please sign in to comment.