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

import Foundation

public struct PlaceVoteSpec: Codable, Equatable {
    public var swapVote: Bool
    public var voteId: String

    public init(swapVote: Bool, voteId: String) {
        self.swapVote = swapVote
        self.voteId = voteId
    }
}
