mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-02-17 05:45:34 +00:00
10 lines
359 B
C#
10 lines
359 B
C#
namespace SabreTools.Models.PortableExecutable
|
|
{
|
|
/// <summary>
|
|
/// Common base class for menu item types
|
|
/// </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"/>
|
|
public abstract class MenuItem { }
|
|
}
|