9 lines
172 B
C#
9 lines
172 B
C#
namespace StructureHelperCommon.Infrastructures.Interfaces
|
|
{
|
|
public interface IHasParent
|
|
{
|
|
object Parent { get; }
|
|
void RegisterParent();
|
|
}
|
|
}
|