blob: e1af689a262e57ff374e51517abadbe44c04ed85 (
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
|
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("Obsolete")]
Obsolete,
}
}
|