Newer
Older
Postman / PostParams.cs
@Go Akahane Go Akahane on 22 Jun 2021 366 bytes first commit
using System;
using System.Collections.Generic;
using System.Text;

namespace Postman
{
    public class PostParams
    {
        public string username { get; set; }
        public string icon_url { get; set; }
        public string text { get; set; }
        public string channel { get; set; }
        public List<Attachment> attachments { get; set; }
    }
}