using System.ComponentModel; namespace Xsd2Code.Library.Helpers { /// /// Identifies subtype of a message /// [DefaultValue(Debug)] public enum MessageType { /// /// Error /// Error, /// /// Warning /// Warning, /// /// Information /// Information, /// /// Debug /// Debug } }