Files
PocketSharp/PortablePorts/NReadability/AttributeTransformationInput.cs
T

12 lines
214 B
C#
Raw Normal View History

2013-10-13 20:55:28 +02:00
using System.Xml.Linq;
namespace PocketSharp.Ports.NReadability
2013-10-13 20:55:28 +02:00
{
public class AttributeTransformationInput
{
public string AttributeValue { get; set; }
public XElement Element { get; set; }
}
}