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

import Foundation

public struct HashtagSchema: Codable, Equatable {
    public var count: Int
    public var hashtag: String

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