7 lines
159 B
Swift
Raw Normal View History

2024-12-20 15:36:47 +00:00
/// Represents the reason for downvoting.
public enum DownvoteReason: Int, Hashable {
case notForMe = 0
case repost = 1
case offensiveOrSpam = 2
}