aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/hrc/rule/BaseRule/CharacterCard.py
blob: 2baea48d19e09d809d9c368dcda3587bdc153b9a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from dataclasses import dataclass


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

    property: type


class Attribute(Custom): ...


class Skill(Custom): ...


class Information(Custom): ...