#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.Areas.Config.UI.DeviceFlag;
using Disco.Models.Services.Devices.DeviceFlag;
using Disco.Models.Services.Exporting;
using System.Collections.Generic;
namespace Disco.Web.Areas.Config.Models.DeviceFlag
{
public class ExportModel : ConfigDeviceFlagExportModel
{
public DeviceFlagExportOptions Options { get; set; }
public string ExportSessionId { get; set; }
public ExportResult ExportSessionResult { get; set; }
public List<Disco.Models.Repository.DeviceFlag> DeviceFlags { get; set; }
}
}