22 lines
619 B
C#
22 lines
619 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 APIDescriptionCNAttribute : Attribute
|
||
|
|
{
|
||
|
|
public string Description { get; private set; }
|
||
|
|
|
||
|
|
public APIDescriptionCNAttribute(string description)
|
||
|
|
{
|
||
|
|
Description = description;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|