package com.bcxin.survey.wechat.response;

/** 
 * 文本消息 
 *  
 * @author 百川信 
 * @date 2014-11-24 
 */  
public class TextMessage extends BaseMessage {  
    // 回复的消息内容  
    private String Content;  
  
    public String getContent() {  
        return Content;  
    }  
  
    public void setContent(String content) {  
        Content = content;  
    }  

}
