All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.vmware.l10n.translation.dto.UpdateListDTO Maven / Gradle / Ivy

There is a newer version: 0.7.3
Show newest version
/*
 * Copyright 2019-2022 VMware, Inc.
 * SPDX-License-Identifier: EPL-2.0
 */
package com.vmware.l10n.translation.dto;

import java.util.List;

/**
 * Dto objects for update translation
 */
public class UpdateListDTO {

    private String name;

   

    private List subList;

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

  

    public List getSubList() {
        return subList;
    }

    public void setSubList(List subList) {
        this.subList = subList;
    }
}