17 lines
270 B
C#
17 lines
270 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace ANXStatusComparer.Excludes
|
|||
|
{
|
|||
|
public enum AccessModifier
|
|||
|
{
|
|||
|
Public,
|
|||
|
Protected,
|
|||
|
Private,
|
|||
|
Internal,
|
|||
|
InternalProtected
|
|||
|
}
|
|||
|
}
|