diff options
| author | Fuwn <[email protected]> | 2025-02-22 12:26:31 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-02-22 12:26:31 -0800 |
| commit | f527ede88d974271a0c485e297ba9278909f53bb (patch) | |
| tree | 6d6ad0597c80fabe48a1de9981bafa968aaf6e29 /Sora/Data/Booru | |
| parent | feat: Development commit (diff) | |
| download | sora-testing-f527ede88d974271a0c485e297ba9278909f53bb.tar.xz sora-testing-f527ede88d974271a0c485e297ba9278909f53bb.zip | |
feat: Development commit
Diffstat (limited to 'Sora/Data/Booru')
| -rw-r--r-- | Sora/Data/Booru/BooruRating.swift | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Sora/Data/Booru/BooruRating.swift b/Sora/Data/Booru/BooruRating.swift index 8327868..f4814e8 100644 --- a/Sora/Data/Booru/BooruRating.swift +++ b/Sora/Data/Booru/BooruRating.swift @@ -1,7 +1,7 @@ -enum BooruRating { - case explicit - case questionable - case safe +enum BooruRating: String, CaseIterable, Decodable, Encodable { + case explicit = "Explicit" + case questionable = "Questionable" + case safe = "Safe" init(_ string: String) { switch string { |