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

  1. package com.example.demo.domain.DTO;
  2. import lombok.Data;
  3. @Data
  4. public class TranslationQueryRequest {
  5. private int pageNum = 1;
  6. private int pageSize = 10;
  7. private String chineseSimplified;
  8. private String languageStatus; // format: "language/isTranslated" e.g. "en/true"
  9. }