mirror of
https://github.com/Radarr/Radarr.git
synced 2025-04-24 06:27:08 -04:00
initial additions
This commit is contained in:
parent
5855773842
commit
bf8d21cd52
2 changed files with 27 additions and 0 deletions
13
src/NzbDrone.Core/Notifications/Slack/Payloads/Block.cs
Normal file
13
src/NzbDrone.Core/Notifications/Slack/Payloads/Block.cs
Normal 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; }
|
||||
}
|
||||
}
|
14
src/NzbDrone.Core/Notifications/Slack/Payloads/BlockType.cs
Normal file
14
src/NzbDrone.Core/Notifications/Slack/Payloads/BlockType.cs
Normal file
|
@ -0,0 +1,14 @@
|
|||
namespace NzbDrone.Core.Notifications.Slack.Payloads
|
||||
{
|
||||
public enum BlockType
|
||||
{
|
||||
Actions,
|
||||
Context,
|
||||
Divider,
|
||||
File,
|
||||
Header,
|
||||
Image,
|
||||
Input,
|
||||
Section
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue