mirror of
https://github.com/nagisa77/OpenIsle.git
synced 2026-02-09 16:41:04 +08:00
17 lines
440 B
Java
17 lines
440 B
Java
package com.openisle.dto;
|
|
|
|
import com.openisle.model.RegisterMode;
|
|
import lombok.Data;
|
|
|
|
/** Public site configuration values. */
|
|
@Data
|
|
public class SiteConfigDto {
|
|
private boolean captchaEnabled;
|
|
private boolean registerCaptchaEnabled;
|
|
private boolean loginCaptchaEnabled;
|
|
private boolean postCaptchaEnabled;
|
|
private boolean commentCaptchaEnabled;
|
|
private int aiFormatLimit;
|
|
private RegisterMode registerMode;
|
|
}
|