NameDto.java 513 Bytes
Newer Older
1 2
package pwc.taxtech.atms.dto;

3
import com.fasterxml.jackson.annotation.JsonProperty;
4
import pwc.taxtech.atms.constant.enums.RoleSource;
5

6
public class NameDto {
7
    @JsonProperty("ID")
8
    private Long id;
9 10 11 12 13

    private String name;

    private RoleSource RoleSource;

14 15
    public Long getId() {
        return id;
16 17
    }

18 19
    public void setId(Long id) {
        this.id = id;
20 21 22 23 24 25 26 27 28 29
    }

    public String getName() {
        return name;
    }

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