backend/restservice/src/main/java/com/plannaplan/responses/models/StatisticCreatedGroupsResponse.java

24 lines
449 B
Java
Raw Normal View History

2021-01-21 15:05:45 +01:00
package com.plannaplan.responses.models;
/**
* Api response for created groups statistics
*/
public class StatisticCreatedGroupsResponse {
private Integer ammount;
/**
* @param ammount created groups
*/
public StatisticCreatedGroupsResponse(Integer ammount) {
this.ammount = ammount;
}
/**
* @return ammount of created groups
*/
public Integer getAmmount() {
return ammount;
}
}