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

import Foundation

public struct ListenerCountResponse: Codable, Equatable {
    public var listenerCount: Int

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