You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Radarr/src/NzbDrone.Core/Notifications/Slack/Payloads/Block.cs

14 lines
265 B

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; }
}
}