1 package com.acumenvelocity.ath.common;
2
3 import java.util.ArrayList;
4 import java.util.List;
5
6 import com.acumenvelocity.ath.common.AlignmentData.ParagraphWithSegments;
7
8 public class ParagraphAlignmentInput {
9 public String sourceLanguage;
10 public String targetLanguage;
11 public List<ParagraphWithSegments> sourceParagraphs = new ArrayList<>();
12 public List<ParagraphWithSegments> targetParagraphs = new ArrayList<>();
13 }