import Foundation /// Vote counts for a single poll option, returned by the relay `/polls/votes/` endpoint. public struct OrgSocialPollVote: Sendable, Equatable { /// The text of the poll option (e.g. `"yes"`, `"Emacs"`). public let option: String /// URLs of the posts that voted for this option. public let voterURLs: [String] public var voteCount: Int { voterURLs.count } public init(option: String, voterURLs: [String]) { self.option = option self.voterURLs = voterURLs } }