IceCubesApp/Packages/Models/Sources/Models/NotificationsPolicy.swift
2024-03-26 15:49:43 +01:00

15 lines
405 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
}
}