namespace Disco.Services.Plugins.Features.WirelessProfileProvider
{
///
/// A transform to be applied to the matching .
///
public class WirelessProfileTransformation
{
///
/// The name of the wireless profile related to this transformation, typically the SSID
///
public string Name { get; set; }
///
/// The regular expression to evaluate against the wireless profile XML
///
public string RegularExpression { get; set; }
///
/// The replacement string used when evaluating the regular expression
///
public string RegularExpressionReplacement { get; set; }
}
}