using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace MyRecipes2.Server.Models { public class Like { public int Id { get; set; } public Recipe Recipe { get; set; } public ApplicationUser LikedBy { get; set; } } }