Update Chat.java

This commit is contained in:
iCaitlyn 2022-02-09 01:22:39 +08:00 committed by GitHub
parent d0ee4ac4f5
commit 17ed5b5859
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -1,14 +1,14 @@
package de.Linus122.TelegramComponents;
public class Chat {
private int id;
private long id;
private String type;
public int getId() {
public long getId() {
return id;
}
public void setId(int id) {
public void setId(long id) {
this.id = id;
}