mirror of
https://github.com/nagisa77/OpenIsle.git
synced 2026-02-10 09:00:53 +08:00
13 lines
243 B
Java
13 lines
243 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;
|
|
}
|