blob: 07065d6a058c37b3da1139e33752694518cea3ca (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
package cuchaz.enigma.translation.mapping;
import com.google.gson.annotations.SerializedName;
public class MappingSaveParameters {
@SerializedName("file_name_format")
private final MappingFileNameFormat fileNameFormat;
public MappingSaveParameters(MappingFileNameFormat fileNameFormat) {
this.fileNameFormat = fileNameFormat;
}
public MappingFileNameFormat getFileNameFormat() {
return fileNameFormat;
}
}
|