#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,9 @@
using System.Collections.Generic;
namespace Disco.Models.UI.Config.DeviceFlag
{
public interface ConfigDeviceFlagIndexModel : BaseUIModel
{
Dictionary<Repository.DeviceFlag, int> DeviceFlags { get; set; }
}
}