using Disco.Models.Services.Devices.Exporting; using Disco.Models.Services.Exporting; using System.Collections.Generic; namespace Disco.Models.UI.Device { public interface DeviceExportModel : BaseUIModel { DeviceExportOptions Options { get; set; } string ExportSessionId { get; set; } ExportResult ExportSessionResult { get; set; } IEnumerable> DeviceBatches { get; set; } IEnumerable> DeviceModels { get; set; } IEnumerable> DeviceProfiles { get; set; } } }