mirror of
https://github.com/guilhermewerner/gerencia-projetos
synced 2025-06-15 22:45:09 +00:00
24 lines
639 B
C#
24 lines
639 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 DesenvolvedorRequisito
|
|
{
|
|
[Key, Column(Order = 1)]
|
|
public int DesenvolvedorId { get; set; }
|
|
public Desenvolvedor Desenvolvedor { get; set; }
|
|
|
|
[Key, Column(Order = 2)]
|
|
public int RequisitoId { get; set; }
|
|
public Requisito Requisito { get; set; }
|
|
|
|
[DataType(DataType.Time)]
|
|
public TimeSpan TempoGasto { get; set; }
|
|
}
|
|
}
|