1
0
mirror of https://github.com/bitwarden/server synced 2025-12-15 07:43:54 +00:00
Files
server/util/Seeder/SceneResult.cs
2025-10-18 15:55:48 -04:00

8 lines
186 B
C#

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