using System.Collections.Generic;
namespace Disco.Models.ClientServices.EnrolmentInformation
{
public class WirelessProfileStore
{
///
/// A list of wireless profiles to add to the client device.
///
public List Profiles { get; set; }
///
/// A list of transformations to be applied to existing XML wireless profiles found on the client device.
///
public List Transformations { get; set; }
///
/// A list of wireless profile names to be removed from the client device.
///
public List RemoveNames { get; set; }
}
}