mirror of
https://github.com/nagisa77/OpenIsle.git
synced 2026-02-10 00:51:00 +08:00
12 lines
246 B
Java
12 lines
246 B
Java
package com.openisle.dto;
|
|
|
|
import com.openisle.model.NotificationType;
|
|
import lombok.Data;
|
|
|
|
/** User notification preference DTO. */
|
|
@Data
|
|
public class NotificationPreferenceDto {
|
|
private NotificationType type;
|
|
private boolean enabled;
|
|
}
|