diff options
Diffstat (limited to 'Software/Visual_Studio/Tango.CodeGeneration/CodeObjectModifier.cs')
| -rw-r--r-- | Software/Visual_Studio/Tango.CodeGeneration/CodeObjectModifier.cs | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.CodeGeneration/CodeObjectModifier.cs b/Software/Visual_Studio/Tango.CodeGeneration/CodeObjectModifier.cs new file mode 100644 index 000000000..3d6be1b04 --- /dev/null +++ b/Software/Visual_Studio/Tango.CodeGeneration/CodeObjectModifier.cs @@ -0,0 +1,35 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Tango.CodeGeneration +{ + /// <summary> + /// Represents a code object modifiers enumeration. + /// </summary> + public enum CodeObjectModifier + { + /// <summary> + /// Public modifier. + /// </summary> + Public, + /// <summary> + /// Internal modifier. + /// </summary> + Internal, + /// <summary> + /// Protected modifier. + /// </summary> + Protected, + /// <summary> + /// Private modifier. + /// </summary> + Private, + /// <summary> + /// No modifier. + /// </summary> + None, + } +} |
