mirror of
https://github.com/nagisa77/OpenIsle.git
synced 2026-02-10 00:51:00 +08:00
17 lines
390 B
Java
17 lines
390 B
Java
package com.openisle.dto;
|
|
|
|
import com.openisle.model.PasswordStrength;
|
|
import com.openisle.model.PublishMode;
|
|
import com.openisle.model.RegisterMode;
|
|
import lombok.Data;
|
|
|
|
/** DTO for site configuration. */
|
|
@Data
|
|
public class ConfigDto {
|
|
|
|
private PublishMode publishMode;
|
|
private PasswordStrength passwordStrength;
|
|
private Integer aiFormatLimit;
|
|
private RegisterMode registerMode;
|
|
}
|