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

import Foundation

public struct RecentVoterState: Codable, Equatable {
    public var profileUrl: String
    public var userId: String

    public init(profileUrl: String, userId: String) {
        self.profileUrl = profileUrl
        self.userId = userId
    }
}
