2013-04-26 07:40:39 +02:00
|
|
|
package com.commafeed.frontend.model;
|
|
|
|
|
|
|
|
|
|
import java.io.Serializable;
|
|
|
|
|
|
2015-07-09 16:03:38 +02:00
|
|
|
import io.swagger.annotations.ApiModel;
|
2013-08-11 11:59:24 +02:00
|
|
|
import lombok.Data;
|
|
|
|
|
|
2013-04-26 07:40:39 +02:00
|
|
|
@SuppressWarnings("serial")
|
2014-08-08 16:49:02 +02:00
|
|
|
@ApiModel("Server infos")
|
2013-08-11 11:59:24 +02:00
|
|
|
@Data
|
2013-04-26 07:40:39 +02:00
|
|
|
public class ServerInfo implements Serializable {
|
|
|
|
|
|
|
|
|
|
private String announcement;
|
2013-07-21 11:40:32 +02:00
|
|
|
private String version;
|
|
|
|
|
private String gitCommit;
|
2014-08-09 16:07:24 +02:00
|
|
|
private boolean allowRegistrations;
|
2014-08-11 14:55:41 +02:00
|
|
|
private String googleAnalyticsCode;
|
|
|
|
|
private boolean smtpEnabled;
|
2013-04-26 07:40:39 +02:00
|
|
|
|
|
|
|
|
}
|