3fdb4f1053
Many additional device properties are available to export. The previous export configuration is remembered.
17 lines
578 B
C#
17 lines
578 B
C#
using Disco.Models.Services.Devices.Exporting;
|
|
using Disco.Models.UI.Device;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Disco.Web.Models.Device
|
|
{
|
|
public class ExportModel : DeviceExportModel
|
|
{
|
|
public DeviceExportOptions Options { get; set; }
|
|
|
|
public string DownloadExportSessionId { get; set; }
|
|
|
|
public IEnumerable<KeyValuePair<int, string>> DeviceBatches { get; set; }
|
|
public IEnumerable<KeyValuePair<int, string>> DeviceModels { get; set; }
|
|
public IEnumerable<KeyValuePair<int, string>> DeviceProfiles { get; set; }
|
|
}
|
|
} |