14 lines
311 B
C#
14 lines
311 B
C#
|
namespace Thousandto.Code.Global
|
|||
|
{
|
|||
|
public enum FriendType
|
|||
|
{
|
|||
|
Undefine = 0,
|
|||
|
Friend = 1, // 好友
|
|||
|
Enemy = 2, // 仇人
|
|||
|
Shield = 3, // 屏蔽
|
|||
|
Recommend = 4, // 推荐
|
|||
|
Recent = 5, // 最近
|
|||
|
Search = 6, // 查找
|
|||
|
}
|
|||
|
}
|