first commit

This commit is contained in:
qianhao.xu
2024-09-23 09:14:22 +08:00
commit fdbe20be5a
407 changed files with 35117 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
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;
}
}
}