CTT/Unity/Assets/HotfixView/Common/UIEventAttribute.cs

14 lines
236 B
C#
Raw Normal View History

2021-04-08 20:09:59 +08:00
using System;
namespace ET
{
public class UIEventAttribute : BaseAttribute
{
public string UIType { get; }
public UIEventAttribute(string uiType)
{
this.UIType = uiType;
}
}
}