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