#138 device flags configuration API and UI

This commit is contained in:
Gary Sharp
2024-01-14 17:59:30 +11:00
parent cd858c2215
commit 6ce6e2cccf
32 changed files with 6242 additions and 54 deletions
@@ -0,0 +1,17 @@
using Disco.Models.Services.Devices.DeviceFlag;
using Disco.Models.Services.Exporting;
using Disco.Models.UI;
using System.Collections.Generic;
namespace Disco.Models.Areas.Config.UI.DeviceFlag
{
public interface ConfigDeviceFlagExportModel : BaseUIModel
{
DeviceFlagExportOptions Options { get; set; }
string ExportSessionId { get; set; }
ExportResult ExportSessionResult { get; set; }
List<Repository.DeviceFlag> DeviceFlags { get; set; }
}
}