mirror of
https://github.com/nagisa77/OpenIsle.git
synced 2026-02-08 08:01:16 +08:00
12 lines
274 B
Java
12 lines
274 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;
|
|
}
|