From f527ede88d974271a0c485e297ba9278909f53bb Mon Sep 17 00:00:00 2001 From: Fuwn Date: Sat, 22 Feb 2025 12:26:31 -0800 Subject: feat: Development commit --- Sora/Data/Booru/BooruRating.swift | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'Sora/Data/Booru') 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 { -- cgit v1.2.3