package xyz.etztech.mixtape; public class Alias { private String uuid; private String from; private String to; private Database.AliasType type; public String getUuid() { return uuid; } public void setUuid(String uuid) { this.uuid = uuid; } public String getFrom() { return from; } public void setFrom(String from) { this.from = from; } public String getTo() { return to; } public void setTo(String to) { this.to = to; } public Database.AliasType getType() { return type; } public void setType(Database.AliasType type) { this.type = type; } }