Skip to content

Commit 84042e5

Browse files
authored
1 parent 38a3871 commit 84042e5

1 file changed

Lines changed: 9 additions & 1 deletion

File tree

  • source/src/Slackbot.Net.Endpoints/Models/Interactive/BlockActions
Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
using Slackbot.Net.Endpoints.Models.Interactive.MessageActions;
12
using Slackbot.Net.Models.BlockKit;
23

34
namespace Slackbot.Net.Endpoints.Models.Interactive.BlockActions;
@@ -6,6 +7,13 @@ public class BlockActionInteraction : Interaction
67
{
78
public Team Team { get; set; }
89
public User User { get; set; }
9-
10+
public Channel Channel { get; set; }
11+
public Message Message { get; set; }
12+
public State State { get; set; }
1013
public IEnumerable<ActionsBlock> Actions { get; set; }
1114
}
15+
16+
public class State
17+
{
18+
public Dictionary<string, string> Values { get; set; } = [];
19+
}

0 commit comments

Comments
 (0)