Files
Disco/Disco.Models/UI/Device/DeviceExportModel.cs
T

22 lines
696 B
C#

using Disco.Models.Services.Devices;
using Disco.Models.Services.Exporting;
using Disco.Models.UI.Shared;
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<KeyValuePair<int, string>> DeviceBatches { get; set; }
IEnumerable<KeyValuePair<int, string>> DeviceModels { get; set; }
IEnumerable<KeyValuePair<int, string>> DeviceProfiles { get; set; }
SharedExportFieldsModel<DeviceExportOptions> Fields { get; set; }
}
}