So I have this class:
public class Link {
public string Title { get; set; }
public string Url { get; set:}
public string Description { get; set; }
}
And I need to pass this to the view (A page of links), such that each Link.Title will appear as the clickable link text with Link.Url as the URL.
How exactly do I pass the model properties into a clickable link?