using System;
namespace Disco.Services.Plugins.Features.WirelessProfileProvider
{
public class WirelessProfile
{
///
/// The name of the wireless profile, typically the SSID
///
public string Name { get; set; }
///
/// The guid of the associated interface. Null to deploy to all supported interfaces.
///
public Guid? InterfaceGuid { get; set; }
///
/// Indicates the profile should be overwritten even if it already exists
///
public bool ForceDeployment { get; set; }
///
/// The wireless profile XML definition
///
public string ProfileXml { get; set; }
}
}