mirror of
https://github.com/bitwarden/server
synced 2025-12-22 11:13:27 +00:00
7 lines
183 B
C#
7 lines
183 B
C#
namespace Bit.Seeder;
|
|
|
|
public class RecipeResult
|
|
{
|
|
public required object Result { get; init; }
|
|
public Dictionary<string, List<Guid>> TrackedEntities { get; init; } = new();
|
|
} |