Skip to content

Commit

Permalink
Enable description and helpText for options (#230)
Browse files Browse the repository at this point in the history
* enable description for options

* enable HelpText for options

* fix comment

Co-authored-by: Ivar Nesje <[email protected]>

---------

Co-authored-by: Ivar Nesje <[email protected]>
  • Loading branch information
Magnusrm and ivarne authored Apr 20, 2023
1 parent 6fd79fb commit 2761cc7
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/Altinn.App.Core/Models/AppOption.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,15 @@ public class AppOption
/// The label of a given option
/// </summary>
public string Label { get; set; }

/// <summary>
/// The description of a given option
/// </summary>
public string? Description { get; set; }

/// <summary>
/// The help text of a given option
/// </summary>
public string? HelpText { get; set; }
}
}

0 comments on commit 2761cc7

Please sign in to comment.