package froala.editor.video; /** * 부분 전송 VO * @since 2021. 6. 18. * @author 임종호 *
* ----------------------- * 개정이력 * 2021. 6. 18. 임종호 : 최초작성 **/ public class Range { private long start; private long end; private long total; private long partSize; private boolean isPart = false; public Range(Long start, Long end, Long total) { super(); this.start = start; this.end = end; this.total = total; } public Range(Long start, Long end) { super(); this.start = start; this.end = end; } public long getStart() { return start; } public void setStart(long start) { this.start = start; } public long getEnd() { return end; } public void setEnd(long end) { this.end = end; } public long getTotal() { return total; } public void setTotal(long total) { this.total = total; } public long getPartSize() { return partSize; } public void setPartSize(long partSize) { this.partSize = partSize; } public boolean isPart() { return isPart; } public void setPart(boolean isPart) { this.isPart = isPart; } }