AdViewModel.cs 377 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. namespace KJH55128_Rec.ViewModels
  6. {
  7. public class AdViewModel
  8. {
  9. public AdViewModel(string title, string href)
  10. {
  11. Title = title;
  12. Href = href;
  13. }
  14. public string Title { get; set; }
  15. public string Href { get; set; }
  16. }
  17. }