mirror of
https://github.com/nagisa77/OpenIsle.git
synced 2026-02-10 09:00:53 +08:00
15 lines
254 B
Java
15 lines
254 B
Java
package com.openisle.dto;
|
|
|
|
import java.util.List;
|
|
import lombok.Data;
|
|
|
|
/** Request body for saving a draft. */
|
|
@Data
|
|
public class DraftRequest {
|
|
|
|
private String title;
|
|
private String content;
|
|
private Long categoryId;
|
|
private List<Long> tagIds;
|
|
}
|