2017-01-19 15:30:41 +01:00
|
|
|
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,
|
2017-10-02 04:43:20 +02:00
|
|
|
Fixed
|
2017-01-19 15:30:41 +01:00
|
|
|
}
|
|
|
|
|
}
|