6f5f044095
* compiles with relevant deletions * Test fixes * fix type loading * type load for tests * speckle objects renamespace * rename Core to Sdk * Fix test references * tests renaming * rename logging * fmt * start of adding an attribute to all base types * convert all types and do basic test * Fix most tests * fix more tests * fmt * Build fix * add changes and more tests * Fix tests * Fix integration tests
18 lines
473 B
C#
18 lines
473 B
C#
using Speckle.Sdk.Models;
|
|
|
|
namespace Speckle.Sdk.Tests.Unit.Models.GraphTraversal;
|
|
|
|
[SpeckleType("Speckle.Core.Tests.Unit.Models.GraphTraversal.TraversalMock")]
|
|
public class TraversalMock : Base
|
|
{
|
|
public Base Child { get; set; }
|
|
|
|
public object ObjectChild { get; set; }
|
|
|
|
public List<Base> ListChildren { get; set; } = new();
|
|
|
|
public List<List<Base>> NestedListChildren { get; set; } = new();
|
|
|
|
public Dictionary<string, Base> DictChildren { get; set; } = new();
|
|
}
|