diff --git a/src/Core/Services/IPlayDataService.cs b/src/Core/Services/IPlayDataService.cs index 9f3e33a17d..775506b9a2 100644 --- a/src/Core/Services/IPlayDataService.cs +++ b/src/Core/Services/IPlayDataService.cs @@ -3,11 +3,14 @@ using Bit.Core.Entities; namespace Bit.Core.Services; +/// +/// Service used to track added users and organizations during a Play session. +/// public interface IPlayDataService { /// /// Records a PlayData entry for the given User created during a Play session. - /// + /// /// Does nothing if no Play Id is set for this http scope. /// /// @@ -15,7 +18,7 @@ public interface IPlayDataService Task Record(User user); /// /// Records a PlayData entry for the given Organization created during a Play session. - /// + /// /// Does nothing if no Play Id is set for this http scope. /// /// diff --git a/util/Seeder/MangleId.cs b/util/Seeder/MangleId.cs index 1ae8a93f40..0f7c70b2bd 100644 --- a/util/Seeder/MangleId.cs +++ b/util/Seeder/MangleId.cs @@ -1,5 +1,8 @@ namespace Bit.Seeder; +/// +/// Helper for mangling IDs +/// public class MangleId { public readonly string Value; diff --git a/util/Seeder/RecipeResult.cs b/util/Seeder/RecipeResult.cs deleted file mode 100644 index 43a52a3342..0000000000 --- a/util/Seeder/RecipeResult.cs +++ /dev/null @@ -1,6 +0,0 @@ -namespace Bit.Seeder; - -public class RecipeResult -{ - public Dictionary> TrackedEntities { get; init; } = new(); -}