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

import Foundation

/// Represent an increment of a playlist play count, with data need to pass in
public struct PlaylistPlayCountSpec: Codable, Equatable {
    public var clipId: UUID?

    public init(clipId: UUID? = nil) {
        self.clipId = clipId
    }
}
