Skip to content

Instantly share code, notes, and snippets.

@Rudyzio
Created April 12, 2019 21:26
Show Gist options
  • Save Rudyzio/e693be7fb2ab4875edebc1db5987685b to your computer and use it in GitHub Desktop.
Save Rudyzio/e693be7fb2ab4875edebc1db5987685b to your computer and use it in GitHub Desktop.
public class Recipe : BaseEntity
{
public string Name { get; set; }
public string Description { get; set; }
public string ImagePath { get; set; }
public RecipeDifficulty Difficulty { get; set; }
public int Time { get; set; }
public IEnumerable<Ingredient> Ingredients { get; set; }
[ForeignKey("User")]
public int UserId { get; set; }
public User User { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment