mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-19 21:46:50 -04:00
initial additions
This commit is contained in:
@@ -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; }
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,14 @@
|
|||||||
|
namespace NzbDrone.Core.Notifications.Slack.Payloads
|
||||||
|
{
|
||||||
|
public enum BlockType
|
||||||
|
{
|
||||||
|
Actions,
|
||||||
|
Context,
|
||||||
|
Divider,
|
||||||
|
File,
|
||||||
|
Header,
|
||||||
|
Image,
|
||||||
|
Input,
|
||||||
|
Section
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user