33 lines
724 B
C#
33 lines
724 B
C#
|
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()
|
|||
|
{
|
|||
|
|
|||
|
|
|||
|
}
|
|||
|
}
|
|||
|
}
|