25 lines
532 B
C#
25 lines
532 B
C#
using System;
|
|
|
|
namespace DOAN.Common.DynamicApiSimple
|
|
{
|
|
/// <summary>
|
|
/// 动态api属性
|
|
/// </summary>
|
|
public class DynamicApiAttribute : Attribute
|
|
{
|
|
public string Name;
|
|
public string Order;
|
|
public string Description;
|
|
public DynamicApiAttribute()
|
|
{
|
|
|
|
}
|
|
public DynamicApiAttribute(string _name, string _order, string _description)
|
|
{
|
|
Name = _name;
|
|
Order = _order;
|
|
Description = _description;
|
|
}
|
|
}
|
|
}
|