12 lines
284 B
Swift
Raw Normal View History

2024-12-20 15:19:17 +00:00
public extension Rant {
public enum Kind: Int {
case rant = 1
case collaboration = 2
case meme = 3
case question = 4
case devRant = 5
case random = 6
//case undefined = 7 // Not available anymore in the official app
}
}