old_flsystem/应用/Delivery.Plugin/Config.cs

33 lines
724 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using Api.Framework.Enums;
using Api.Framework.SDK;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using UI.Framework.Entitys;
namespace Delivery.Plugin
{
// Editor(typeof(PropertyGridRichText), typeof(System.Drawing.Design.UITypeEditor))
[Config(Name = "插件-代取快递-配置")]
public class Config
{
[Category("1、设置"), DisplayName("02.服务器地址"),Description(@"服务器地址")]
/// <summary>
/// 取件网址
/// </summary>
public string QUrl { get; set; }
public Config()
{
}
}
}