Skip to content

Commit a4dd36b

Browse files
committed
fix: PushNotificationQuery에 Sendable 채택
1 parent f8505fe commit a4dd36b

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Application/DevLogCore/Sources/PushNotificationQuery.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@
77

88
import Foundation
99

10-
public struct PushNotificationQuery: Equatable {
11-
public enum SortOrder: Equatable {
10+
public struct PushNotificationQuery: Equatable, Sendable {
11+
public enum SortOrder: Equatable, Sendable {
1212
case latest
1313
case oldest
1414
}
1515

16-
public enum TimeFilter: Equatable, Hashable {
16+
public enum TimeFilter: Equatable, Hashable, Sendable {
1717
case none
1818
case hours(Int)
1919
case days(Int)

0 commit comments

Comments
 (0)