using Core.Abstractions.DomainObjects; namespace Core.DomainObjects { public class MenuItem : DomainObjectBase { public string? Icon { get; set; } public string? Title { get; set; } public string? Target { get; set; } public List? ChildItems { get; set; } public override int GetHashCode() { throw new NotImplementedException(); } } }