adds bug a description

This commit is contained in:
Paul Schneider 2017-10-16 11:29:10 +02:00
commit 3ca7870456
12 changed files with 2524 additions and 2 deletions

View file

@ -12,6 +12,7 @@ namespace Yavsc.Models.IT.Maintaining
{
Requested,
Accepted,
Rejected,
Implemented
}
}

View file

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