1
0
mirror of https://github.com/bitwarden/server synced 2025-12-20 10:13:39 +00:00
Files
server/util/Seeder/RecipeResult.cs
Matt Gibson 431a708914 Delete all seeded data
Fixup single user recipe to inform of seeded entities
2025-10-09 15:36:29 -07:00

8 lines
187 B
C#

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