Skip to content

Instantly share code, notes, and snippets.

@filipececcon
Created July 25, 2017 16:13
Show Gist options
  • Save filipececcon/c2c8653eb268eff72bafeae29ce235ce to your computer and use it in GitHub Desktop.
Save filipececcon/c2c8653eb268eff72bafeae29ce235ce to your computer and use it in GitHub Desktop.
Player.cs
namespace Domain.Entities
{
public class Player : BaseEntity
{
public string Name { get; set; }
public int Age { get; set; }
// declarar as colunas de chave estrangeira da tabela
public int TeamId { get; set; }
public Team Team { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment