1
0
mirror of https://github.com/bitwarden/server synced 2025-12-16 00:03:54 +00:00

Add queries, rename seed to scene

This commit is contained in:
Hinton
2025-10-18 15:55:48 -04:00
parent fd41332e4c
commit 1daf9ad892
13 changed files with 298 additions and 187 deletions

View File

@@ -0,0 +1,7 @@
namespace Bit.Seeder;
public class SceneResult
{
public required object Result { get; init; }
public Dictionary<string, List<Guid>> TrackedEntities { get; init; } = new();
}