aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/hrc/rule/BaseRule/CharacterCard.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/hrc/rule/BaseRule/CharacterCard.py')
-rw-r--r--src/hrc/rule/BaseRule/CharacterCard.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/hrc/rule/BaseRule/CharacterCard.py b/src/hrc/rule/BaseRule/CharacterCard.py
new file mode 100644
index 0000000..2baea48
--- /dev/null
+++ b/src/hrc/rule/BaseRule/CharacterCard.py
@@ -0,0 +1,17 @@
+from dataclasses import dataclass
+
+
+@dataclass
+class Custom(object):
+ """Docstring for Custom."""
+
+ property: type
+
+
+class Attribute(Custom): ...
+
+
+class Skill(Custom): ...
+
+
+class Information(Custom): ...