adds bug a description
This commit is contained in:
parent
6c29fb4705
commit
3ca7870456
12 changed files with 2524 additions and 2 deletions
|
|
@ -12,6 +12,7 @@ namespace Yavsc.Models.IT.Maintaining
|
|||
{
|
||||
Requested,
|
||||
Accepted,
|
||||
Rejected,
|
||||
Implemented
|
||||
}
|
||||
}
|
||||
|
|
@ -1,5 +1,6 @@
|
|||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
using Yavsc.Attributes.Validation;
|
||||
|
||||
namespace Yavsc.Models.IT.Fixing
|
||||
{
|
||||
|
|
@ -7,8 +8,12 @@ namespace Yavsc.Models.IT.Fixing
|
|||
{
|
||||
[Key,DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
||||
public long Id { get; set; }
|
||||
|
||||
public long FeatureId { get; set; }
|
||||
|
||||
[YaStringLength(2048)]
|
||||
public string Description { get; set; }
|
||||
|
||||
public BugStatus Status { get; set; }
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue