mirror of
https://github.com/project-redbud/FunGame-Core.git
synced 2025-04-21 19:49:34 +08:00
17 lines
389 B
C#
17 lines
389 B
C#
/**
|
||
* 此文件保存Method(方法)的枚举
|
||
*/
|
||
namespace Milimoe.FunGame.Core.Library.Constant
|
||
{
|
||
/// <summary>
|
||
/// 配合 <see cref="InterfaceType"/> <see cref="InterfaceSet"/> 使用,也别忘了修改 <see cref="Api.Utility.Implement"/>
|
||
/// </summary>
|
||
public enum InterfaceMethod
|
||
{
|
||
RemoteServerIP,
|
||
DBConnection,
|
||
GetServerSettings,
|
||
SecretKey
|
||
}
|
||
}
|