1
0
mirror of https://github.com/deadc0de6/dotdrop.git synced 2026-02-04 15:39:43 +00:00
Files
dotdrop/dotdrop/linktypes.py
2019-04-04 12:13:47 +02:00

8 lines
103 B
Python

from enum import IntEnum
class LinkTypes(IntEnum):
NOLINK = 0
LINK = 1
LINK_CHILDREN = 2