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

import Foundation

/// Represent the event of a user skipping a clip at a given time.
public struct TimeOfSkipSpec: Codable, Equatable {
    public var clipId: UUID
    public var timeOfSkipS: Int

    public init(clipId: UUID, timeOfSkipS: Int) {
        self.clipId = clipId
        self.timeOfSkipS = timeOfSkipS
    }
}
