mirror of
https://github.com/Pardus-LiderAhenk/ahenk
synced 2024-11-11 07:02:16 +03:00
25 lines
537 B
Python
25 lines
537 B
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
# Author: Volkan Şahin <volkansah.in> <bm.volkansahin@gmail.com>
|
|
import json
|
|
|
|
class Plugin(object):
|
|
"""docstring for Plugin"""
|
|
def __init__(self,message):
|
|
self.plugin = message
|
|
|
|
@property
|
|
def id(self):
|
|
return self.plugin['id']
|
|
|
|
@property
|
|
def name(self):
|
|
return self.plugin['name']
|
|
|
|
@property
|
|
def version(self):
|
|
return self.plugin['version']
|
|
|
|
@property
|
|
def description(self):
|
|
return self.plugin['description']
|