mirror of
https://github.com/deadc0de6/dotdrop.git
synced 2026-02-04 15:39:43 +00:00
8 lines
103 B
Python
8 lines
103 B
Python
from enum import IntEnum
|
|
|
|
|
|
class LinkTypes(IntEnum):
|
|
NOLINK = 0
|
|
LINK = 1
|
|
LINK_CHILDREN = 2
|