1 /*
2  * Collie - An asynchronous event-driven network framework using Dlang development
3  *
4  * Copyright (C) 2015-2017  Shanghai Putao Technology Co., Ltd 
5  *
6  * Developer: putao's Dlang team
7  *
8  * Licensed under the Apache-2.0 License.
9  *
10  */
11 module collie.codec.mqtt.mqttunsubscribepayload;
12 
13 class MqttUnsubscribePayload 
14 {
15 public:
16 	 this(string[] topics) {
17 		this._topics = topics;
18 	}
19 	
20 	string[] topics() {
21 		return _topics;
22 	}
23 	
24 	override
25 	 string toString() {
26 		return "";
27 	}
28 private:
29 	  string[] _topics;
30 }
31