using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tango.TFS { public enum ResolvedReason { [Description("Unknown")] Unknown, [Description("As Designed")] AsDesigned, [Description("Cannot Reproduce")] CannotReproduce, [Description("Copied To Backlog")] CopiedToBacklog, [Description("Deferred")] Deferred, [Description("Duplicate")] Duplicate, [Description("Fixed")] Fixed, [Description("Fixed and verified")] FixedAndVerified, [Description("Obsolete")] Obsolete, } }