mirror of
https://github.com/bitwarden/server
synced 2025-12-15 07:43:54 +00:00
8 lines
186 B
C#
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();
|
|
}
|