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