Subversion Repositories DevTools

Rev

Rev 2141 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2141 Rev 2151
Line 1... Line 1...
1
using System;
1
using System;
2
 
2
 
3
namespace EA_ReqPro
3
namespace EA_ReqPro
4
{
4
{
5
	/// <summary>
5
   /// <summary>
6
   /// This class represents a ReqPro requirement status type. It allows an indication of whether the
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 
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.
8
   /// of the requirement status type for display purposes.
9
 
9
 
10
	/// </summary>
10
   /// </summary>
11
	public class ReqPro_ReqStatus
11
   public class ReqPro_ReqStatus
12
	{
12
   {
13
      public string status_value;
13
      public string status_value;
14
      public bool filtered;
14
      public bool filtered;
15
 
15
 
16
		public ReqPro_ReqStatus()
16
      public ReqPro_ReqStatus()
17
		{
17
      {
18
         status_value = "";
18
         status_value = "";
19
         filtered = false;
19
         filtered = false;
20
		}
20
      }
21
	}
21
   }
22
}
22
}