#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,20 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user