7 lines
169 B
Swift
Raw Normal View History

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