14 lines
256 B
C#
14 lines
256 B
C#
using System.Xml.Linq;
|
|
|
|
namespace ReadSharp.Ports.NReadability
|
|
{
|
|
public class AttributeTransformationInput
|
|
{
|
|
public string AttributeValue { get; set; }
|
|
|
|
public string ArticleUrl { get; set; }
|
|
|
|
public XElement Element { get; set; }
|
|
}
|
|
}
|