Files
speckle-sharp-sdk/tests/Speckle.Sdk.Tests.Unit/Models/GraphTraversal/TraversalMockObjects.cs
T
Adam Hathcock 6f5f044095 Adam/cxpla 6 kill remaining kit code in core (#59)
* 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
2024-08-08 10:52:19 +01:00

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();
}