summaryrefslogtreecommitdiff
path: root/client/Piztor/src/com/macaroon/piztor/ReqSendMessage.java
blob: d5bcef427a3cf09cdd2806e3c0df206a681d98d8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.macaroon.piztor;

//--------------------------------------//
//			Send Message				//
//--------------------------------------//

public class ReqSendMessage extends Req{
	String msg;
	
	ReqSendMessage(String token,String name,String message,long time,long alive){
		super(6,token,name,time,alive);	//for type 6
		msg = message;
	}
}