f70261aa25
Ensure at least one field is selected, and UI improvements.
21 lines
503 B
C#
21 lines
503 B
C#
using Disco.Models.Services.Devices.Exporting;
|
|
using Disco.Services.Tasks;
|
|
using System.IO;
|
|
|
|
namespace Disco.Services.Devices.Exporting
|
|
{
|
|
public class DeviceExportTaskContext
|
|
{
|
|
public DeviceExportOptions Options { get; private set; }
|
|
|
|
public ScheduledTaskStatus TaskStatus { get; set; }
|
|
|
|
public DeviceExportResult Result { get; set; }
|
|
|
|
public DeviceExportTaskContext(DeviceExportOptions Options)
|
|
{
|
|
this.Options = Options;
|
|
}
|
|
}
|
|
}
|