mirror of
https://github.com/ShrlAlgo/AddinManager.git
synced 2026-03-08 08:58:53 +00:00
14 lines
180 B
C#
14 lines
180 B
C#
|
|
using System;
|
|||
|
|
|
|||
|
|
namespace AddInManager
|
|||
|
|
{
|
|||
|
|
[Flags]
|
|||
|
|
public enum AddinType
|
|||
|
|
{
|
|||
|
|
Invalid = 0,
|
|||
|
|
Command = 1,
|
|||
|
|
Application = 2,
|
|||
|
|
Mixed = 3
|
|||
|
|
}
|
|||
|
|
}
|