Initial commit

This commit is contained in:
GuiNerd
2019-09-21 17:03:29 -03:00
commit bde1ec52fd
1736 changed files with 187698 additions and 0 deletions

View File

@ -0,0 +1,20 @@
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 DesenvolvedorProjeto
{
[Key, Column(Order = 1)]
public int DesenvolvedorId { get; set; }
public Desenvolvedor Desenvolvedor { get; set; }
[Key, Column(Order = 2)]
public int ProjetoId { get; set; }
public Projeto Projeto { get; set; }
}
}