namespace WebApi.Entities
{
 
    public class Profile
    {
        
        [ForeignKey("User")]
        public int Id { get; set; }

        public string BannerImageUrl { get; set; }
        public string ProfileImageUrl { get; set; }
        public string ShortDescription { get; set; }
        public string Description { get; set; }


        public User User { get; set; }
    }
}

Add a code snippet to your website: www.paste.org