using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tango.CodeGeneration { /// /// Represents a code object modifiers enumeration. /// public enum CodeObjectModifier { /// /// Public modifier. /// Public, /// /// Internal modifier. /// Internal, /// /// Protected modifier. /// Protected, /// /// Private modifier. /// Private, /// /// No modifier. /// None, } }