IceCubesApp/Packages/Models/Sources/Models/NotificationsPolicy.swift
Thomas Ricouard c3edabb183 Lint
2024-05-04 13:19:19 +02:00

15 lines
403 B
Swift

import Foundation
public struct NotificationsPolicy: Codable, Sendable {
public var filterNotFollowing: Bool
public var filterNotFollowers: Bool
public var filterNewAccounts: Bool
public var filterPrivateMentions: Bool
public let summary: Summary
public struct Summary: Codable, Sendable {
public let pendingRequestsCount: String
public let pendingNotificationsCount: String
}
}