mirror of
https://github.com/Athou/commafeed.git
synced 2026-03-21 21:37:29 +00:00
21 lines
450 B
Java
21 lines
450 B
Java
package com.commafeed.frontend.model;
|
|
|
|
import java.io.Serializable;
|
|
|
|
import io.swagger.annotations.ApiModel;
|
|
import lombok.Data;
|
|
|
|
@SuppressWarnings("serial")
|
|
@ApiModel("Server infos")
|
|
@Data
|
|
public class ServerInfo implements Serializable {
|
|
|
|
private String announcement;
|
|
private String version;
|
|
private String gitCommit;
|
|
private boolean allowRegistrations;
|
|
private String googleAnalyticsCode;
|
|
private boolean smtpEnabled;
|
|
|
|
}
|