23 lines
344 B
Java
23 lines
344 B
Java
package com.baeldung.oauth2resttemplate;
|
|
|
|
public class GithubRepo {
|
|
Long id;
|
|
String name;
|
|
|
|
public Long getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(Long id) {
|
|
this.id = id;
|
|
}
|
|
|
|
public String getName() {
|
|
return name;
|
|
}
|
|
|
|
public void setName(String name) {
|
|
this.name = name;
|
|
}
|
|
}
|