2013-12-17 22:50:36 +01:00
|
|
|
using System.Xml.Linq;
|
|
|
|
|
|
|
|
|
|
namespace ReadSharp.Ports.NReadability
|
|
|
|
|
{
|
|
|
|
|
public class AttributeTransformationInput
|
|
|
|
|
{
|
|
|
|
|
public string AttributeValue { get; set; }
|
|
|
|
|
|
2013-12-24 00:12:21 +01:00
|
|
|
public string ArticleUrl { get; set; }
|
|
|
|
|
|
2013-12-17 22:50:36 +01:00
|
|
|
public XElement Element { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|