© 2026 Hedgehog Software, LLC
public interface IMayHaveCreator<TKey> { TKey? CreatorId { get; set; } }
public class Foo : IMayHaveCreator<Guid> { public Guid? CreatorId { get; set; } }
Foo
CreatorId
Guid CreatorId