Skip to content

Commit

Permalink
String til Locale
Browse files Browse the repository at this point in the history
  • Loading branch information
bragejahren committed Dec 11, 2024
1 parent 3ece57c commit 2df2b04
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -98,13 +98,13 @@ data class Barn(
typealias Locale = String

class TekstPåSpråkMap(
val tekstPåSpråk: Map<String, String>,
) : Map<String, String> by tekstPåSpråk {
val tekstPåSpråk: Map<Locale, String>,
) : Map<Locale, String> by tekstPåSpråk {
@JsonCreator
fun fromJson(tekstPåSpråk: Map<String, String>): TekstPåSpråkMap = TekstPåSpråkMap(tekstPåSpråk)
fun fromJson(tekstPåSpråk: Map<Locale, String>): TekstPåSpråkMap = TekstPåSpråkMap(tekstPåSpråk)

@JsonValue
fun toJson(): Map<String, String> = tekstPåSpråk
fun toJson(): Map<Locale, String> = tekstPåSpråk
}

enum class Dokumentasjonsbehov {
Expand Down

0 comments on commit 2df2b04

Please sign in to comment.