private static AdSystem GetAdSystem(XElement element)
        {
            var adSystem = new AdSystem();

            if (element != null)
            {
                adSystem.Version = (string)element.Attribute("version");
                adSystem.Value   = (string)element;
            }
            return(adSystem);
        }
 private static AdSystem GetAdSystem(XElement element)
 {
     var adSystem = new AdSystem();
     if (element != null)
     {
         adSystem.Version = (string)element.Attribute("version");
         adSystem.Value = (string)element;
     }
     return adSystem;
 }