var AddTopicNotification = require('./add-topic-notification');
var Codec = require('io/codec');
module.exports = {
read : function(input) {
var response_code = Codec.readByte(input);
return new AddTopicNotification(response_code);
},
write : function() {
}
};