feat: UserCreateDtoを作成

This commit is contained in:
usbharu 2023-04-28 13:56:20 +09:00
parent e040f6c811
commit 79205fc253
Signed by: usbharu
GPG Key ID: 6556747BF94EEBC8
1 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,9 @@
package dev.usbharu.hideout.domain.model.hideout.dto
data class UserCreateDto(
val name:String,
val domain:String,
val screenName:String,
val description:String,
val password:String
)