11111
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
/****************************************************************************
|
||||
* Copyright (c) 2015 - 2022 liangxiegame UNDER MIT License
|
||||
*
|
||||
* http://qframework.cn
|
||||
* https://github.com/liangxiegame/QFramework
|
||||
* https://gitee.com/liangxiegame/QFramework
|
||||
****************************************************************************/
|
||||
|
||||
using System;
|
||||
|
||||
namespace Stary.Evo
|
||||
{
|
||||
public class APIDescriptionCNAttribute : Attribute
|
||||
{
|
||||
public string Description { get; private set; }
|
||||
|
||||
public APIDescriptionCNAttribute(string description)
|
||||
{
|
||||
Description = description;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 2c5538bb5e55498ba063f98c0c7a8800
|
||||
timeCreated: 1647422088
|
||||
@@ -0,0 +1,23 @@
|
||||
/****************************************************************************
|
||||
* Copyright (c) 2015 - 2022 liangxiegame UNDER MIT License
|
||||
*
|
||||
* http://qframework.cn
|
||||
* https://github.com/liangxiegame/QFramework
|
||||
* https://gitee.com/liangxiegame/QFramework
|
||||
****************************************************************************/
|
||||
|
||||
using System;
|
||||
|
||||
namespace Stary.Evo
|
||||
{
|
||||
public class APIDescriptionENAttribute : Attribute
|
||||
{
|
||||
public string Description { get; private set; }
|
||||
|
||||
public APIDescriptionENAttribute(string description)
|
||||
{
|
||||
Description = description;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 570b6aa696204dbc949fea41caf8fcae
|
||||
timeCreated: 1647422110
|
||||
@@ -0,0 +1,22 @@
|
||||
/****************************************************************************
|
||||
* Copyright (c) 2015 - 2022 liangxiegame UNDER MIT License
|
||||
*
|
||||
* http://qframework.cn
|
||||
* https://github.com/liangxiegame/QFramework
|
||||
* https://gitee.com/liangxiegame/QFramework
|
||||
****************************************************************************/
|
||||
|
||||
using System;
|
||||
|
||||
namespace Stary.Evo
|
||||
{
|
||||
public class APIExampleCodeAttribute : Attribute
|
||||
{
|
||||
public string Code { get; private set; }
|
||||
|
||||
public APIExampleCodeAttribute(string code)
|
||||
{
|
||||
Code = code;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
fileFormatVersion: 2
|
||||
guid: b48b349a950f405095cf304b9bde0338
|
||||
timeCreated: 1647424574
|
||||
@@ -0,0 +1,24 @@
|
||||
|
||||
using System;
|
||||
|
||||
namespace Stary.Evo
|
||||
{
|
||||
[AttributeUsage(AttributeTargets.Class)]
|
||||
public class ClassAPIAttribute : Attribute
|
||||
{
|
||||
public string DisplayMenuName { get; private set; }
|
||||
public string GroupName { get; private set; }
|
||||
|
||||
public int RenderOrder { get;private set; }
|
||||
|
||||
public string DisplayClassName { get; private set; }
|
||||
|
||||
public ClassAPIAttribute(string groupName, string displayMenuName,int renderOrder,string displayClassName = null)
|
||||
{
|
||||
GroupName = groupName;
|
||||
DisplayMenuName = displayMenuName;
|
||||
RenderOrder = renderOrder;
|
||||
DisplayClassName = displayClassName;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 72248ec1038f4ce58ad2861e9b02aa52
|
||||
timeCreated: 1647404455
|
||||
@@ -0,0 +1,18 @@
|
||||
/****************************************************************************
|
||||
* Copyright (c) 2015 - 2022 liangxiegame UNDER MIT License
|
||||
*
|
||||
* http://qframework.cn
|
||||
* https://github.com/liangxiegame/QFramework
|
||||
* https://gitee.com/liangxiegame/QFramework
|
||||
****************************************************************************/
|
||||
|
||||
using System;
|
||||
|
||||
namespace Stary.Evo
|
||||
{
|
||||
[AttributeUsage(AttributeTargets.Method)]
|
||||
public class MethodAPIAttribute : Attribute
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 5db430b6c4ac4de5a9836454125e0669
|
||||
timeCreated: 1647428627
|
||||
@@ -0,0 +1,18 @@
|
||||
/****************************************************************************
|
||||
* Copyright (c) 2015 - 2022 liangxiegame UNDER MIT License
|
||||
*
|
||||
* http://qframework.cn
|
||||
* https://github.com/liangxiegame/QFramework
|
||||
* https://gitee.com/liangxiegame/QFramework
|
||||
****************************************************************************/
|
||||
|
||||
using System;
|
||||
|
||||
namespace Stary.Evo
|
||||
{
|
||||
[AttributeUsage(AttributeTargets.Property)]
|
||||
public class PropertyAPIAttribute : Attribute
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
fileFormatVersion: 2
|
||||
guid: ab3c662f56b4401eaad6594ef6182e75
|
||||
timeCreated: 1647515468
|
||||
Reference in New Issue
Block a user