Subversion Repositories DevTools

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2141 ghuddy 1
using System;
2
 
3
namespace EA_ReqPro
4
{
5
	/// <summary>
6
   /// This class represents a ReqPro requirement status type. It allows an indication of whether the
7
   /// requirement status type has been filtered out by the user, as well as capturing the name 
8
   /// of the requirement status type for display purposes.
9
 
10
	/// </summary>
11
	public class ReqPro_ReqStatus
12
	{
13
      public string status_value;
14
      public bool filtered;
15
 
16
		public ReqPro_ReqStatus()
17
		{
18
         status_value = "";
19
         filtered = false;
20
		}
21
	}
22
}