mirror of
https://github.com/nagisa77/OpenIsle.git
synced 2026-02-11 01:21:09 +08:00
21 lines
513 B
Java
21 lines
513 B
Java
package com.openisle.dto;
|
|
|
|
import com.openisle.model.CategoryProposalStatus;
|
|
import java.time.LocalDateTime;
|
|
import lombok.Data;
|
|
import lombok.EqualsAndHashCode;
|
|
|
|
@Data
|
|
@EqualsAndHashCode(callSuper = true)
|
|
public class ProposalDto extends PollDto {
|
|
|
|
private CategoryProposalStatus proposalStatus;
|
|
private String proposedName;
|
|
private String description;
|
|
private int approveThreshold;
|
|
private int quorum;
|
|
private LocalDateTime startAt;
|
|
private String resultSnapshot;
|
|
private String rejectReason;
|
|
}
|