File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ public class AttachmentUpdateResponse : IReadOnlyAttachment
4949 public DateTime ? Timestamp => Attachment . Timestamp ;
5050 public string ServiceName => Attachment . ServiceName ;
5151 public string ServiceIcon => Attachment . ServiceIcon ;
52- public bool IsAppUnfurl => Attachment . IsAppUnfurl ;
52+ public bool ? IsAppUnfurl => Attachment . IsAppUnfurl ;
5353 public string AppUnfurlUrl => Attachment . AppUnfurlUrl ;
5454 public string BotId => Attachment . BotId ;
5555 public string BotTeamId => Attachment . BotTeamId ;
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ public interface IReadOnlyAttachment
4343 DateTime ? Timestamp { get ; }
4444 string ServiceName { get ; }
4545 string ServiceIcon { get ; }
46- bool IsAppUnfurl { get ; }
46+ bool ? IsAppUnfurl { get ; }
4747 string AppUnfurlUrl { get ; }
4848 string BotId { get ; }
4949 string BotTeamId { get ; }
@@ -94,7 +94,7 @@ public class Attachment : IReadOnlyAttachment
9494 public bool ? IsMsgUnfurl { get ; set ; }
9595 public string ServiceName { get ; set ; }
9696 public string ServiceIcon { get ; set ; }
97- public bool IsAppUnfurl { get ; set ; }
97+ public bool ? IsAppUnfurl { get ; set ; }
9898 public string AppUnfurlUrl { get ; set ; }
9999 public string BotId { get ; set ; }
100100 public string BotTeamId { get ; set ; }
You can’t perform that action at this time.
0 commit comments