Files
OpenIsle/backend/src/main/java/com/openisle/dto/NotificationPreferenceUpdateRequest.java
2025-09-18 14:42:25 +08:00

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;
}