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