// Generated by Create API
// https://github.com/CreateAPI/CreateAPI

import Foundation

public struct UserNotificationV2Schema: Codable, Equatable {
    public var notifications: [NotificationV2Schema]?
    public var notifiedAt: Date

    public init(notifications: [NotificationV2Schema]? = nil, notifiedAt: Date) {
        self.notifications = notifications
        self.notifiedAt = notifiedAt
    }
}
