© 2026 Hedgehog Software, LLC
public abstract class BaseClass { [SomeAttribute] public virtual string SomeProperty { get; set; } = ""; } public class DerivedClass : BaseClass { [SomeOtherAttribute] public string SomeProperty { get; set; } = ""; }
DerivedClass -> SomeProperty
SomeAttribute
SomeOtherAttribute