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

namespace Postman
{
    public class Configure
    {
        public string PostUrl { get; set; }

        public string Channel { get; set; }

        public string UserName { get; set; }

        public string IconUrl { get; set; }

        public List<string> Mentions { get; set; }

    }
}