-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1f78df6
commit f6eb7ff
Showing
10 changed files
with
201 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 27 additions & 0 deletions
27
...main/User/Interface/Sources/DTO/Request/UpdatePushNotificationAllowStatusRequestDTO.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
// | ||
// UpdatePushNotificationAllowStatusRequestDTO.swift | ||
// DomainUserInterface | ||
// | ||
// Created by JongHoon on 11/3/24. | ||
// | ||
|
||
import Foundation | ||
|
||
public struct UpdatePushNotificationAllowStatusRequestDTO: Encodable { | ||
public let alimyTurnedOn: Bool | ||
public let deviceName: String | ||
public let appVersion: String | ||
public let deviceId: String | ||
|
||
public init( | ||
turnOn: Bool, | ||
deviceName: String, | ||
appVersion: String, | ||
deviceId: String | ||
) { | ||
self.alimyTurnedOn = turnOn | ||
self.deviceName = deviceName | ||
self.appVersion = appVersion | ||
self.deviceId = deviceId | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
...cts/Domain/User/Interface/Sources/NeedUpdatePushNotificationAllowStatusRemotelyType.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
// | ||
// NeedUpdatePushNotificationAllowStatusRemotelyType.swift | ||
// DomainUserInterface | ||
// | ||
// Created by JongHoon on 11/2/24. | ||
// | ||
|
||
import Foundation | ||
|
||
public enum NeedUpdatePushNotificationAllowStatusRemotelyType { | ||
case notNeed | ||
case need(isAllow: Bool) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.