using Disco.Models.ClientServices;
using Disco.Models.Repository;
using System.Collections.Generic;
namespace Disco.Services.Plugins.Features.WirelessProfileProvider
{
public class ProvisionWirelessProfilesResult
{
///
/// The associated with the provision result.
///
public Device Device { get; set; }
///
/// The associated with the provision result.
///
public Enrol Enrolment { get; set; }
///
/// A list of wireless profiles to add to the client device.
/// If the wireless profile already exists it will be ignored.
///
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; }
}
}