using DomainObjects; namespace WeatherForecast.Models { /// /// /// public class FeatureModel { /// /// /// public string Icon { get; set; } /// /// /// public string Title { get; set; } /// /// /// public string Text { get; set; } /// /// /// /// public FeatureModel(Feature feature) { Icon = feature.Icon; Title = feature.Title; Text = feature.Text; } } }