2026-03-17 16:35:27 +07:00
|
|
|
package ru.soune.nocopy.dto.violation;
|
|
|
|
|
|
|
|
|
|
import lombok.Data;
|
|
|
|
|
|
|
|
|
|
@Data
|
|
|
|
|
public class ViolationNotionRequest {
|
|
|
|
|
private String token;
|
|
|
|
|
private String action;
|
2026-03-17 22:23:19 +07:00
|
|
|
private Long violationId;
|
2026-03-17 16:35:27 +07:00
|
|
|
private Long notionId;
|
2026-03-17 22:23:19 +07:00
|
|
|
private String message;
|
2026-03-17 16:35:27 +07:00
|
|
|
}
|