feat: add poll post type

This commit is contained in:
Tim
2025-08-29 22:36:36 +08:00
parent 59232f99ca
commit 55dd36bd24
9 changed files with 140 additions and 3 deletions

View File

@@ -26,5 +26,8 @@ public class PostRequest {
private Integer pointCost;
private LocalDateTime startTime;
private LocalDateTime endTime;
// fields for poll posts
private String question;
private List<String> options;
}