Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Abstractions/Context/ActorType.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ namespace ModularityKit.Mutator.Abstractions.Context;
/// Defines the type of actor performing a mutation.
/// Provides context for auditing, tracking, and governance of system changes.
/// </summary>
internal enum ActorType
public enum ActorType
{
/// <summary>
/// Unknown actor type.
Expand Down
2 changes: 1 addition & 1 deletion src/Abstractions/Context/MutationContext.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public sealed record MutationContext
/// <summary>
/// Type of actor performing the mutation.
/// </summary>
internal ActorType ActorType { get; init; } = ActorType.Unknown;
public ActorType ActorType { get; internal init; } = ActorType.Unknown;

/// <summary>
/// Reason for performing the mutation.
Expand Down
Loading