zxl
/
CTT
forked from Cal/CTT
1
0
Fork 0
CTT/Unity/Assets/HotfixView/Common/UIEventAttribute.cs

14 lines
236 B
C#

using System;
namespace ET
{
public class UIEventAttribute : BaseAttribute
{
public string UIType { get; }
public UIEventAttribute(string uiType)
{
this.UIType = uiType;
}
}
}