1
Fork 0
mirror of https://github.com/Quackster/Havana.git synced 2025-07-01 20:27:47 +00:00

Merge pull request #18 from GitHabbo/feature/housekeeping-stats

Fix for housekeeping stats
This commit is contained in:
Quackster 2022-11-27 16:48:24 +10:00 committed by GitHub
commit 3dc4da3d32
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -16,4 +16,28 @@ public class HousekeepingStats {
this.petCount = petCount;
this.photoCount = photoCount;
}
public int getUserCount() {
return userCount;
}
public int getInventoryItemsCount() {
return inventoryItemsCount;
}
public int getRoomItemCount() {
return roomItemCount;
}
public int getGroupCount() {
return groupCount;
}
public int getPetCount() {
return petCount;
}
public int getPhotoCount() {
return photoCount;
}
}