8 lines
211 B
Python
8 lines
211 B
Python
from snek.model.channel_member import ChannelMemberModel
|
|
from snek.system.mapper import BaseMapper
|
|
|
|
|
|
class ChannelMemberMapper(BaseMapper):
|
|
table_name = "channel_member"
|
|
model_class = ChannelMemberModel
|