From 6d0728ddca851f9e7f0522abd4a368d3d08f11c6 Mon Sep 17 00:00:00 2001 From: Simon Oxtoby Date: Sun, 11 Apr 2021 10:02:20 +1000 Subject: [PATCH] Adding Description to block Option --- SlackNet/Blocks/Option.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/SlackNet/Blocks/Option.cs b/SlackNet/Blocks/Option.cs index 94a6ffe..d971aa1 100644 --- a/SlackNet/Blocks/Option.cs +++ b/SlackNet/Blocks/Option.cs @@ -14,5 +14,10 @@ public class Option /// The string value that will be passed to your app when this option is chosen. /// public string Value { get; set; } + + /// + /// A plain text object that defines a line of descriptive text shown below the text field beside a radio button. + /// + public PlainText Description { get; set; } } } \ No newline at end of file