Paste
Pasted as C# by maestrozo ( 6 years ago )
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; }
}
}
Revise this Paste