Files
gerencia-projetos/GerenciaProjetos/Models/Bug.cs
2019-09-22 09:00:10 -03:00

31 lines
796 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Threading.Tasks;
namespace GerenciaProjetos.Models
{
public class Bug
{
[Key]
public int Id { get; set; }
public int DesenvolvedorId { get; set; }
public Desenvolvedor Desenvolvedor { get; set; }
public int RequisitoId { get; set; }
public Requisito Requisito { get; set; }
public string Prioridade { get; set; }
public DateTime DataCadastro { get; set; }
public int CriadorId { get; set; }
public Desenvolvedor Criador { get; set; }
public bool FoiResolvido { get; set; }
}
}