namespace Yavsc.Models.IT.Maintaining { /// /// A Feature status /// Ko: A Bug has just been discovered /// InSane: This feature is not correctly integrating its ecosystem /// Obsolete: This will be replaced in a short future, or yet has been replaced /// with a better solution. /// Ok : nothing to say /// public enum FeatureStatus: int { Ko, Ok, ToDoInterface, ToDoImplementation, ToDoModel, ToDoSpecifications } }