Skip to content

Commit

Permalink
Fritekst nullable (#371)
Browse files Browse the repository at this point in the history
  • Loading branch information
emilps authored Dec 5, 2024
1 parent 7dc56c1 commit 6c635e0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ data class BetingetOpplysning<T, R>(
)

interface Svar {
val innhold: Any
val innhold: Any?
}

data class FritekstSvar(
override val innhold: String,
override val innhold: String? = null,
) : Svar

data class DatoSvar(
Expand Down

0 comments on commit 6c635e0

Please sign in to comment.