namespace Einstein.MSBRE
{
using System;
using System.Collections.Generic;
using System.Text;
///
/// Attribute-Value pair. Used as the initial fact type.
///
public class AV
{
///
/// Name of attribute.
///
public string Attribute;
///
/// Value of attribute.
///
public string Value;
///
/// Constructor.
///
/// Name of attribute.
/// Value of attribute.
public AV(string attribute, string value)
{
Attribute = attribute;
Value = value;
}
}
}