blob: c48c64ef2ecc706800332126a1aa5e9377bd725f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
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,
}
}
|