You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
289 B
11 lines
289 B
package com.example.demo.domain.DTO;
|
|
|
|
import lombok.Data;
|
|
|
|
@Data
|
|
public class TranslationQueryRequest {
|
|
private int pageNum = 1;
|
|
private int pageSize = 10;
|
|
private String chineseSimplified;
|
|
private String languageStatus; // format: "language/isTranslated" e.g. "en/true"
|
|
}
|