yavsc/Yavsc/Models/IT/Evolution/FeatureStatus.cs

17 lines
494 B
C#
Raw Normal View History

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