2 instantiations of SimpleRecord
Microsoft.Extensions.AI.Abstractions.Tests (2)
test\Shared\JsonSchemaExporter\TestTypes.cs (2)
48AdditionalValues: [42, false, 3.14, 3.14M, new int[] { 1, 2, 3 }, new SimpleRecord(1, "str", false, 3.14)], 188Value: new(1, "two", true, 3.14),
6 references to SimpleRecord
Microsoft.Extensions.AI.Abstractions.Tests (6)
test\Shared\JsonSchemaExporter\TestTypes.cs (6)
187yield return new TestData<SimpleRecord>( 952public SimpleRecord? Value1 { get; set; } 953public SimpleRecord? Value2 { get; set; } 954public List<SimpleRecord>? ListValue { get; set; } 955public SimpleRecord[]? ArrayValue { get; set; } 1267[JsonSerializable(typeof(SimpleRecord))]