3fdb4f1053
Many additional device properties are available to export. The previous export configuration is remembered.
16 lines
516 B
C#
16 lines
516 B
C#
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; }
|
|
}
|
|
} |