blob: bdd1bf79713e101ada046afc87e25347910acec8 (
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
|
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("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,
}
}
|