Subversion Repositories DevTools

Rev

Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

using System;

namespace EA_ReqPro
{
        /// <summary>
   /// This class represents a ReqPro requirement status type. It allows an indication of whether the
   /// requirement status type has been filtered out by the user, as well as capturing the name 
   /// of the requirement status type for display purposes.

        /// </summary>
        public class ReqPro_ReqStatus
        {
      public string status_value;
      public bool filtered;

                public ReqPro_ReqStatus()
                {
         status_value = "";
         filtered = false;
                }
        }
}