using System; namespace Disco.Models.ClientServices.EnrolmentInformation { public class WirelessProfile { /// /// The name of the wireless profile, typically the SSID /// public string Name { get; set; } /// /// The guid of the associated interface. /// public Guid? InterfaceGuid { get; set; } /// /// Indicates the profile is deployed via Group Policy and therefore read-only /// public bool? IsGroupPolicy { 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; } } }