IT model
This commit is contained in:
parent
add449c18a
commit
6aadb38df5
4 changed files with 68 additions and 0 deletions
19
Yavsc/Models/IT/Fixing/BugStatus.cs
Normal file
19
Yavsc/Models/IT/Fixing/BugStatus.cs
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
namespace Yavsc.Models.IT.Fixing
|
||||
{
|
||||
/// <summary>
|
||||
/// Bug status:
|
||||
/// * Inserted -> Confirmed|FeatureRequest|Feature|Rejected
|
||||
/// * Confirmed -> Fixed
|
||||
/// * FeatureRequest -> Implemented
|
||||
/// </summary>
|
||||
public enum BugStatus : int
|
||||
{
|
||||
Inserted,
|
||||
Confirmed,
|
||||
Rejected,
|
||||
Feature,
|
||||
FeatureRequest,
|
||||
Fixed,
|
||||
Implemented
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue