IT model
parent
7f9d0e946b
commit
efb7d19d80
@ -0,0 +1,20 @@
|
||||
namespace Yavsc.Models.IT.Maintaining
|
||||
{
|
||||
/// <summary>
|
||||
/// A Feature status
|
||||
/// <c>Ko</c>: A Bug has just been discovered
|
||||
/// <c>InSane</c>: This feature is not correctly integrating its ecosystem
|
||||
/// <c>Obsolete</c>: This will be replaced in a short future, or yet has been replaced
|
||||
/// with a better solution.
|
||||
/// <c>Ok</c> : nothing to say
|
||||
/// </summary>
|
||||
public enum FeatureStatus: int
|
||||
{
|
||||
Ko,
|
||||
Ok,
|
||||
ToDoInterface,
|
||||
ToDoImplementation,
|
||||
ToDoModel,
|
||||
ToDoSpecifications
|
||||
}
|
||||
}
|
||||
@ -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…
Reference in New Issue