#34 Feature: Detailed Device Exporting
Many additional device properties are available to export. The previous export configuration is remembered.
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
using Disco.Models.Services.Devices.Exporting;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Disco.Models.UI.Device
|
||||
{
|
||||
public interface DeviceExportModel : BaseUIModel
|
||||
{
|
||||
DeviceExportOptions Options { get; set; }
|
||||
|
||||
string DownloadExportSessionId { get; set; }
|
||||
|
||||
IEnumerable<KeyValuePair<int, string>> DeviceBatches { get; set; }
|
||||
IEnumerable<KeyValuePair<int, string>> DeviceModels { get; set; }
|
||||
IEnumerable<KeyValuePair<int, string>> DeviceProfiles { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user