diff --git a/src/Altinn.App.Core/Models/AppOption.cs b/src/Altinn.App.Core/Models/AppOption.cs index e4da984bc..3d80ee2fc 100644 --- a/src/Altinn.App.Core/Models/AppOption.cs +++ b/src/Altinn.App.Core/Models/AppOption.cs @@ -14,5 +14,15 @@ public class AppOption /// The label of a given option /// public string Label { get; set; } + + /// + /// The description of a given option + /// + public string? Description { get; set; } + + /// + /// The help text of a given option + /// + public string? HelpText { get; set; } } }