using DomainObjects.Abstractions; namespace DomainObjects; public class Route : DomainObjectBase { public string Target { get; set; } public string? Component { get; set; } public List? ChildRoutes { get; set; } public override int GetHashCode() { throw new NotImplementedException(); } }