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

import Foundation

public struct ActiveSongListenersResponse: Codable, Equatable {
    public var activeListeners: Int

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