1 instantiation of PropertyOnlyPoco
Microsoft.Extensions.Caching.Hybrid.Tests (1)
SerializerTests.cs (1)
150
var source = new
PropertyOnlyPoco
{ X = 1, Y = "a" };
2 references to PropertyOnlyPoco
Microsoft.Extensions.Caching.Hybrid.Tests (2)
SerializerTests.cs (2)
150
var
source = new PropertyOnlyPoco { X = 1, Y = "a" };
151
var
clone = RoundTrip(source, """{"X":1,"Y":"a"}"""u8, JsonSerializer.Default);