RaUI/Source/ryControls/Gdu.WinFormUI/GMControls/Common/IGMControl.cs

11 lines
189 B
C#
Raw Normal View History

using System;
//忽略没有注释警告
#pragma warning disable 1591
namespace MGdu.WinFormUI
{
public interface IGMControl
{
GMControlType ControlType { get; }
}
}