3fdb4f1053
Many additional device properties are available to export. The previous export configuration is remembered.
21 lines
497 B
C#
21 lines
497 B
C#
using Disco.Models.Services.Devices.Exporting;
|
|
using Disco.Services.Tasks;
|
|
using System.IO;
|
|
|
|
namespace Disco.Services.Devices.Export
|
|
{
|
|
public class DeviceExportTaskContext
|
|
{
|
|
public DeviceExportOptions Options { get; private set; }
|
|
|
|
public ScheduledTaskStatus TaskStatus { get; set; }
|
|
|
|
public MemoryStream CsvResult { get; set; }
|
|
|
|
public DeviceExportTaskContext(DeviceExportOptions Options)
|
|
{
|
|
this.Options = Options;
|
|
}
|
|
}
|
|
}
|