mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-08 06:08:20 -05:00
16 lines
463 B
Python
16 lines
463 B
Python
|
|
class ServerModel(object):
|
|
def __init__(self, id, port, game, hostname, clientnum, maxclientnum, map, gametype, ip):
|
|
self.id = id
|
|
self.port = port
|
|
self.game = game
|
|
self.hostname = hostname
|
|
self.clientnum = clientnum
|
|
self.maxclientnum = maxclientnum
|
|
self.map = map
|
|
self.gametype = gametype
|
|
self.ip = ip
|
|
|
|
def __repr__(self):
|
|
return '<ServerModel(id={id})>'.format(id=self.id)
|