
org.gitlab4j.api.models.GpgKey Maven / Gradle / Ivy
package org.gitlab4j.api.models;
import java.util.Date;
public class GpgKey {
private Long id;
private String key;
private Date createdAt;
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public String getKey() {
return key;
}
public void setKey(String key) {
this.key = key;
}
public Date getCreatedAt() {
return createdAt;
}
public void setCreatedAt(Date createdAt) {
this.createdAt = createdAt;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy