using DomainObjects;
namespace WeatherForecast.Models {
///
///
///
public class LinkModel {
///
///
///
public string? Target { get; set; }
///
///
///
public string? AnchorText { get; set; }
///
///
///
///
public LinkModel(Link link) {
Target = link.Target;
AnchorText = link.AnchorText;
}
}
}