Promact/slack-erp-custom-integration-mvc

View on GitHub
Slack.Automation/Promact.Erp.DomainModel/ApplicationClass/SlackRequestAndResponse/SlashIncomingWebhook.cs

Summary

Maintainability
A
45 mins
Test Coverage
using Newtonsoft.Json;
using System.Collections.Generic;

namespace Promact.Erp.DomainModel.ApplicationClass.SlackRequestAndResponse
{
    public class SlashIncomingWebhook
    {
        /// <summary>
        /// Channel Name or Id for Incoming WebHook
        /// </summary>
        [JsonProperty("channel")]
        public string Channel { get; set; }

        /// <summary>
        /// UserName of Slack
        /// </summary>
        [JsonProperty("username")]
        public string Username { get; set; }

        /// <summary>
        /// Attachment of message to be send on slack using Incoming WebHook
        /// </summary>
        [JsonProperty("attachments")]
        public List<SlashAttachment> Attachments { get; set; }
    }
}