9 lines
193 B
Python
9 lines
193 B
Python
|
|
from .PageProperty import PageProperty as _PageProperty
|
||
|
|
|
||
|
|
class _Acessors:
|
||
|
|
|
||
|
|
def __init__(self) -> None:
|
||
|
|
self.PageProperty = _PageProperty
|
||
|
|
|
||
|
|
Acessors = _Acessors
|
||
|
|
__all__ = ["Acessors"]
|