Files

10 lines
359 B
C#
Raw Permalink Normal View History

2023-09-04 00:12:49 -04:00
namespace SabreTools.Models.PortableExecutable
2023-09-04 00:11:04 -04:00
{
/// <summary>
2024-04-23 16:42:29 -04:00
/// Common base class for menu item types
2023-09-04 00:11:04 -04:00
/// </summary>
/// <see href="https://learn.microsoft.com/en-us/windows/win32/menurc/normalmenuitem"/>
/// <see href="https://learn.microsoft.com/en-us/windows/win32/menurc/popupmenuitem"/>
2024-04-23 16:42:29 -04:00
public abstract class MenuItem { }
2023-09-04 00:11:04 -04:00
}