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