Skip to content

Commit

Permalink
add a file I forgot was even nescessary
Browse files Browse the repository at this point in the history
  • Loading branch information
theBreadCompany committed Dec 13, 2023
1 parent a260ff6 commit 9118b6d
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions Sources/pixivswift/PixivResults+Helper.swift
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
}

0 comments on commit 9118b6d

Please sign in to comment.