This commit is contained in:
xueque
2025-05-16 23:03:47 +08:00
parent 069bbede0e
commit 70c56f8192
25 changed files with 186 additions and 66 deletions

View File

@@ -0,0 +1,5 @@
package shared
abstract class AggregateRoot<T>{
abstract val id: T
}

View File

@@ -0,0 +1,3 @@
package shared.dto
data class ChangeUsernameDto(val id: Long, val firstName: String, val lastName: String, val verificationCode: String)