12 lines
294 B
Swift
Raw Normal View History

2024-12-20 15:19:17 +00:00
public extension Rant {
2024-12-22 16:24:48 +00:00
public enum Kind: Int, Sendable {
2024-12-20 15:19:17 +00:00
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
}
}