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

import Foundation

/// Response schema for the count of remixes inspired by a user's public clips.
public struct RemixesInspiredCountResponse: Codable, Equatable {
    public var count: Int

    public init(count: Int) {
        self.count = count
    }
}
