Skip to content

Commit

Permalink
[hotfix] change fcmToken to nullable
Browse files Browse the repository at this point in the history
  • Loading branch information
chaewonni committed Jul 14, 2024
1 parent 1dbbe78 commit 59fc171
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
package org.kkumulkkum.server.dto.auth.request;

import jakarta.annotation.Nullable;
import jakarta.validation.constraints.NotNull;
import org.kkumulkkum.server.domain.enums.Provider;

public record UserLoginDto(
@NotNull
Provider provider,
@NotNull
@Nullable
String fcmToken
) {
}

0 comments on commit 59fc171

Please sign in to comment.