Skip to content

Commit

Permalink
Change to nullable in test
Browse files Browse the repository at this point in the history
  • Loading branch information
svrooij committed Aug 19, 2024
1 parent a4a03d8 commit 8e544fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/serialization/json/Mocks/BackedTestEntity.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ public BackedTestEntity()

public IBackingStore BackingStore { get; private set; }

public string Id
public string? Id
{
get { return BackingStore?.Get<string>("id"); }
set { BackingStore?.Set("id", value); }
}
public string Name
public string? Name
{
get { return BackingStore?.Get<string>("name"); }
set { BackingStore?.Set("name", value); }
Expand Down

0 comments on commit 8e544fe

Please sign in to comment.