Files
plugin-library/Assets/00.StaryEvo/Runtime/Architecture/Attributes/APIExampleCodeAttribute.cs
2025-03-31 11:16:52 +08:00

22 lines
587 B
C#

/****************************************************************************
* 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;
}
}
}