Skip to content

Instantly share code, notes, and snippets.

@Rudyzio
Created April 12, 2019 21:24
Show Gist options
  • Save Rudyzio/0fd6fcb1e86423c99a4cb946ce06ae7c to your computer and use it in GitHub Desktop.
Save Rudyzio/0fd6fcb1e86423c99a4cb946ce06ae7c to your computer and use it in GitHub Desktop.
public class Ingredient : BaseEntity
{
public string Name { get; set; }
public int Amount { get; set; }
[ForeignKey("Recipe")]
public int RecipeId { get; set; }
public Recipe Recipe { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment