Files
OpenIsle/backend/src/main/java/com/openisle/dto/NotificationPreferenceUpdateRequest.java
2025-08-12 14:28:34 +08:00

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