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

namespace Postman
{
    public class Attachment
    {
        public string color { get; set; }
        public string title { get; set; }
        public string title_link { get; set; }
        public string text { get; set; }
    }
}