Skip to content

Commit 5a6f44b

Browse files
committed
Avoid structs for AutoFixture
1 parent bf3b3e2 commit 5a6f44b

1 file changed

Lines changed: 1 addition & 6 deletions

File tree

  • tests/DynamoDBGenerator.SourceGenerator.Benchmarks/Benchmarks
Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
1-
using DynamoDBGenerator.Attributes;
2-
31
namespace DynamoDBGenerator.SourceGenerator.Benchmarks.Benchmarks;
42

5-
public readonly struct Container<T>
6-
{
7-
public required T Value { get; init; }
8-
}
3+
public sealed record Container<T>(T Value);

0 commit comments

Comments
 (0)