using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace KJH55128_Rec.ViewModels { public class AdViewModel { public AdViewModel(string title, string href) { Title = title; Href = href; } public string Title { get; set; } public string Href { get; set; } } }