aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/hrc/rules/BaseRule/JudgeRule.py
diff options
context:
space:
mode:
Diffstat (limited to 'hrc/rules/BaseRule/JudgeRule.py')
-rw-r--r--hrc/rules/BaseRule/JudgeRule.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/hrc/rules/BaseRule/JudgeRule.py b/hrc/rules/BaseRule/JudgeRule.py
new file mode 100644
index 0000000..20d28a2
--- /dev/null
+++ b/hrc/rules/BaseRule/JudgeRule.py
@@ -0,0 +1,13 @@
+import dataclasses
+from dataclasses import dataclass
+from typing import Literal, Optional, Union
+
+@dataclass
+class Custom(object):
+ ...
+
+class Attribute(Custom):
+ ...
+
+class Skill(Custom):
+ ...