initial additions

This commit is contained in:
Robin Dadswell 2021-11-05 16:07:48 +00:00
parent 5855773842
commit bf8d21cd52
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
}
}