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