refactoring
This commit is contained in:
parent
f950f93f90
commit
18d1b7fea4
8 changed files with 33 additions and 11 deletions
|
|
@ -2,7 +2,7 @@ using System.ComponentModel.DataAnnotations;
|
|||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
using Yavsc.Attributes.Validation;
|
||||
|
||||
namespace Yavsc.Models.IT.Maintaining
|
||||
namespace Yavsc.Models.IT.Evolution
|
||||
{
|
||||
public class Feature
|
||||
{
|
||||
|
|
@ -14,6 +14,7 @@ namespace Yavsc.Models.IT.Maintaining
|
|||
|
||||
[YaStringLength(10*1024,MinLen=3)]
|
||||
public string Description { get; set; }
|
||||
|
||||
public FeatureStatus Status { get; set; }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
namespace Yavsc.Models.IT.Maintaining
|
||||
namespace Yavsc.Models.IT.Evolution
|
||||
{
|
||||
/// <summary>
|
||||
/// A Feature status
|
||||
|
|
@ -15,4 +15,4 @@ namespace Yavsc.Models.IT.Maintaining
|
|||
Rejected,
|
||||
Implemented
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -15,7 +15,10 @@ namespace Yavsc.Models.IT.Fixing
|
|||
|
||||
public long? FeatureId { get; set; }
|
||||
|
||||
[YaStringLength(2048)]
|
||||
[YaStringLength(1024)]
|
||||
public string Title { get; set; }
|
||||
|
||||
[YaStringLength(4096)]
|
||||
public string Description { get; set; }
|
||||
|
||||
public BugStatus Status { get; set; }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue