예제 #1
0
 public MessageButton(string text, MessageButtonStyle style, MessageAction action, bool?disabled = null)
 {
     Text       = text;
     Style      = style;
     Action     = action;
     IsDisabled = disabled;
 }
예제 #2
0
 public ComponentFormButton(MessageButtonStyle style, PartialEmoji emoji)
 {
     Style = style;
     Emoji = emoji;
 }
예제 #3
0
 public ComponentFormButton(MessageButtonStyle style, string text)
 {
     Style = style;
     Text  = text;
 }