Requests WIP

This commit is contained in:
Wilhelm Oks
2024-12-20 16:19:17 +01:00
parent 793db8bac9
commit ce3c96b887
3 changed files with 230 additions and 6 deletions
@@ -0,0 +1,11 @@
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
}
}