1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-03-05 13:21:25 -05:00

Compare commits

...

1 Commits

Author SHA1 Message Date
Robin Dadswell
bf8d21cd52 initial additions 2021-12-07 16:37:59 +00:00
2 changed files with 27 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
namespace NzbDrone.Core.Notifications.Slack.Payloads
{
public class Block
{
public string Fallback { get; set; }
public string Title { get; set; }
public string Text { get; set; }
public string Color { get; set; }
}
}

View File

@@ -0,0 +1,14 @@
namespace NzbDrone.Core.Notifications.Slack.Payloads
{
public enum BlockType
{
Actions,
Context,
Divider,
File,
Header,
Image,
Input,
Section
}
}