#138 device flag export service

This commit is contained in:
Gary Sharp
2024-01-14 17:55:20 +11:00
parent 15e2806731
commit 7e07c07171
3 changed files with 205 additions and 2 deletions
@@ -0,0 +1,12 @@
using Disco.Models.Exporting;
using Disco.Models.Repository;
using System.Collections.Generic;
namespace Disco.Models.Services.Devices.DeviceFlag
{
public class DeviceFlagExportRecord : IExportRecord
{
public DeviceFlagAssignment Assignment { get; set; }
public Dictionary<string, string> AssignedUserCustomDetails { get; set; }
}
}