portfolio
Toggle table of contents
0.0.1-SNAPSHOT
jvm
Platform filter
jvm
Switch theme
Search in API
portfolio
portfolio
/
org.project.portfolio.article.presentation.request
/
ArticleForm
Article
Form
data
class
ArticleForm
(
val
title
:
String
,
val
content
:
String
,
val
images
:
List
<
MultipartFile
>
?
=
null
,
val
tags
:
List
<
String
>
=
listOf()
)
게시글 요청 DTO
Members
Constructors
Article
Form
Link copied to clipboard
constructor
(
title
:
String
,
content
:
String
,
images
:
List
<
MultipartFile
>
?
=
null
,
tags
:
List
<
String
>
=
listOf()
)
Properties
content
Link copied to clipboard
@
Size
(
min
=
1
,
max
=
2000
,
message
=
"내용은 1자 이상 2000자 이하로 입력해주세요"
)
val
content
:
String
게시글 내용
images
Link copied to clipboard
val
images
:
List
<
MultipartFile
>
?
=
null
게시글 사진
tags
Link copied to clipboard
val
tags
:
List
<
String
>
title
Link copied to clipboard
@
Size
(
min
=
1
,
max
=
200
,
message
=
"제목은 1자 이상 200자 이하로 입력해주세요"
)
val
title
:
String
게시글 제목