2 instantiations of ChildDto
Aspire.Hosting.RemoteHost.Tests (2)
AtsMarshallerTests.cs (2)
932
var child = new
ChildDto
{ Label = "child", Parent = parent };
968
var child = new
ChildDto
{ Label = "child", Parent = null };
4 references to ChildDto
Aspire.Hosting.RemoteHost.Tests (4)
AtsMarshallerTests.cs (4)
28
new AtsDtoTypeInfo { TypeId = "test/ChildDto", Name = "ChildDto", ClrType = typeof(
ChildDto
), Properties = [] },
932
var
child = new ChildDto { Label = "child", Parent = parent };
968
var
child = new ChildDto { Label = "child", Parent = null };
1168
public
ChildDto
? Child { get; set; }