mirror of
https://github.com/ShrlAlgo/AddinManager.git
synced 2026-03-07 16:38:56 +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
|
|
}
|
|
}
|