This commit is contained in:
Guilherme
2019-09-24 10:46:39 -03:00
parent 2802ef55b1
commit 34ab942f91
57 changed files with 1044 additions and 896 deletions

View File

@ -14,16 +14,19 @@ namespace GerenciaProjetos.Models
public int DesenvolvedorId { get; set; }
public Desenvolvedor Desenvolvedor { get; set; }
public int RequisitoId { get; set; }
public Requisito Requisito { get; set; }
[MaxLength(100)]
[Required(ErrorMessage = "Este campo é obrigatório.")]
public string Descricao { get; set; }
[MaxLength(25)]
public string Prioridade { get; set; }
[DataType(DataType.Date)]
public DateTime DataCadastro { get; set; }
public int CriadorId { get; set; }
public Desenvolvedor Criador { get; set; }
public bool FoiResolvido { get; set; }
}