mirror of
https://github.com/nagisa77/OpenIsle.git
synced 2026-02-09 00:21:13 +08:00
13 lines
271 B
Java
13 lines
271 B
Java
package com.openisle.dto;
|
|
|
|
import com.openisle.model.NotificationType;
|
|
import lombok.Data;
|
|
|
|
/** Request to update a single notification preference. */
|
|
@Data
|
|
public class NotificationPreferenceUpdateRequest {
|
|
|
|
private NotificationType type;
|
|
private boolean enabled;
|
|
}
|