#34 Update: Additional Validation & UI Changes
Ensure at least one field is selected, and UI improvements.
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.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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user