-
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.
add a file I forgot was even nescessary
- Loading branch information
theBreadCompany
committed
Dec 13, 2023
1 parent
a260ff6
commit 9118b6d
Showing
1 changed file
with
33 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
// | ||
// PixivResults+Helper.swift | ||
// | ||
// | ||
// Created by theBreadCompany on 15.07.22. | ||
// | ||
|
||
import Foundation | ||
|
||
internal struct AutocompleteIllustrationTags: Codable { | ||
var tags: [IllustrationTag] | ||
} | ||
|
||
internal struct NotificationUnreadResult: Codable { | ||
public var hasUnreadNotifications: Bool | ||
} | ||
|
||
internal struct NotificationNewFromFollowing: Codable { | ||
public var notification: PixivNotification | ||
public var latestSeenIllustId: Int | ||
public var latestSeenNovelId: Int | ||
} | ||
|
||
internal struct PixivNotification: Codable {} | ||
|
||
internal struct PixivNotificationRegistration: Codable { | ||
public var topic: String | ||
} | ||
|
||
|
||
internal struct _PixivNotificationSettings: Codable { | ||
public var notificationSettings: PixivNotificationSettings | ||
} |