Subversion Repositories DevTools

Rev

Rev 2141 | Details | Compare with Previous | Last modification | View Log | RSS feed

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