7 lines
159 B
Swift
7 lines
159 B
Swift
|
/// Represents the reason for downvoting.
|
||
|
public enum DownvoteReason: Int, Hashable {
|
||
|
case notForMe = 0
|
||
|
case repost = 1
|
||
|
case offensiveOrSpam = 2
|
||
|
}
|