Files
ReadSharp/PortablePorts/NReadability/AttributeTransformationResult.cs
T
2013-12-17 22:50:36 +01:00

16 lines
410 B
C#

namespace ReadSharp.Ports.NReadability
{
public class AttributeTransformationResult
{
/// <summary>
/// Result of the transformation.
/// </summary>
public string TransformedValue { get; set; }
/// <summary>
/// Name of the attribute that will be used to store the original value. Can be null.
/// </summary>
public string OriginalValueAttributeName { get; set; }
}
}