16 lines
410 B
C#
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; }
|
|
}
|
|
}
|