using DomainObjects.Abstractions; namespace DomainObjects; public class Feature : DomainObjectBase { public string Icon { get; set; } public string Title { get; set; } public string Text { get; set; } public override int GetHashCode() { throw new NotImplementedException(); } }