package com.whyc.dto;
|
|
import java.util.List;
|
|
public class Mp4FileDTO {
|
|
private List<String> paths;
|
private String rootPath;
|
|
public List<String> getPaths() {
|
return paths;
|
}
|
|
public void setPaths(List<String> paths) {
|
this.paths = paths;
|
}
|
|
public String getRootPath() {
|
return rootPath;
|
}
|
|
public void setRootPath(String rootPath) {
|
this.rootPath = rootPath;
|
}
|
}
|