Files
2023-02-12 23:38:24 +05:00

9 lines
172 B
C#

namespace StructureHelperCommon.Infrastructures.Interfaces
{
public interface IHasParent
{
object Parent { get; }
void RegisterParent();
}
}