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

18 lines
511 B
C#
Raw Normal View History

2018-12-27 23:53:27 +00:00
namespace Yavsc.Models.IT.Evolution
2017-01-19 15:30:41 +01:00
{
/// <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,
2017-10-16 11:29:10 +02:00
Rejected,
2017-10-02 04:43:20 +02:00
Implemented
2017-01-19 15:30:41 +01:00
}
2018-12-27 23:53:27 +00:00
}