19 lines
340 B
Java
19 lines
340 B
Java
package ru.soune.nocopy.dto.cost;
|
|
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
|
import lombok.Data;
|
|
|
|
@Data
|
|
public class CostRequest {
|
|
String action;
|
|
|
|
@JsonProperty("file_type")
|
|
String fileType;
|
|
|
|
@JsonProperty("count_files")
|
|
Integer countFilesForProtect;
|
|
|
|
@JsonProperty("auth_token")
|
|
String authToken;
|
|
}
|