This commit is contained in:
Paul Schneider 2017-01-19 15:30:41 +01:00
commit 6aadb38df5
4 changed files with 68 additions and 0 deletions

View file

@ -0,0 +1,14 @@
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace Yavsc.Models.IT.Maintaining
{
public class Feature
{
[Key,DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public long Id { get; set; }
public string ShortName { get; set; }
public string Description { get; set; }
public FeatureStatus Status { get; set; }
}
}

View file

@ -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
}
}