Advertisement
Guest User

Untitled

a guest
May 19th, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.41 KB | None | 0 0
  1. using HtmlAgilityPack;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel;
  5. using System.ComponentModel.DataAnnotations;
  6. using System.Linq;
  7. using System.Threading.Tasks;
  8.  
  9. namespace Seo.Models
  10. {
  11. public class Website
  12. {
  13. [Url]
  14. [Required]
  15. [DisplayName("Podaj adres strony do sprawdzenia")]
  16. public string url { get; set; }
  17. public string titleTag { get; set; }
  18. public string h1Tag { get; set; }
  19. public string h2Tag { get; set; }
  20. public string h3Tag { get; set; }
  21. public string h4Tag { get; set; }
  22. public string h5Tag { get; set; }
  23. public string h6Tag { get; set; }
  24. public Dictionary<string,int> pageContent { get; set; }
  25. public List<string> altPicturesTags { get; set; }
  26. public string facebook { get; set; }
  27. public string twitter { get; set; }
  28. public string instagram { get; set; }
  29. public string linkedin { get; set; }
  30. public string descriptionPage { get; set; }
  31. public string robots { get; set; }
  32. public string sitemap { get; set; }
  33. public string favicon { get; set; }
  34. public string noindex { get; set; }
  35. public string analyticsTag { get; set; }
  36. public string canonical { get; set; }
  37. public string analytics { get; set; }
  38. public string ssl { get; set; }
  39. }
  40. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement