mirror of
https://github.com/nagisa77/OpenIsle.git
synced 2026-02-08 08:01:16 +08:00
11 lines
201 B
Java
11 lines
201 B
Java
package com.openisle.dto;
|
|
|
|
import lombok.Data;
|
|
|
|
/** Request body for creating or replying to a comment. */
|
|
@Data
|
|
public class CommentRequest {
|
|
private String content;
|
|
private String captcha;
|
|
}
|