aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/hrc/rules/BaseRule/CharacterCard.py
blob: 6d09e5a9cd28693902c89ea6cfbfeda9d4b6103f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import dataclasses
from dataclasses import dataclass
from typing import Literal, Optional, Union


@dataclass
class Custom(object):
    """Docstring for Custom."""
    property: type


class Attribute(Custom):
    ...


class Skill(Custom):
    ...


class Information(Custom):
    ...