This commit is contained in:
@@ -1,12 +1,22 @@
|
|||||||
package ru.soune.nocopy.dto.user.moderation;
|
package ru.soune.nocopy.dto.user.moderation;
|
||||||
|
|
||||||
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
|
|
||||||
@Data
|
@Data
|
||||||
public class UserVerificationRequest {
|
public class UserVerificationRequest {
|
||||||
|
@JsonProperty("message")
|
||||||
private String message;
|
private String message;
|
||||||
|
|
||||||
|
@JsonProperty("user_id")
|
||||||
private Long userId;
|
private Long userId;
|
||||||
|
|
||||||
|
@JsonProperty("verified")
|
||||||
private Boolean verified;
|
private Boolean verified;
|
||||||
|
|
||||||
|
@JsonProperty("admin_id")
|
||||||
private Long adminId;
|
private Long adminId;
|
||||||
|
|
||||||
|
@JsonProperty("action")
|
||||||
private String action;
|
private String action;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user