/**
* author : lipan
* filename : DownloadLog.java
* create_time : 2014年9月3日 上午12:00:26
*/
package com.sets.speedtest.http;
/**
* @author : lipan
* @create_time : 2014年9月3日 上午12:00:26
* @desc : TODO
* @update_person:
* @update_time :
* @update_desc :
*
*/
public class DownloadLog
{
public long cost;
public int size;
/**
* @param cost
* @param size
*/
public DownloadLog(long cost, int size)
{
this.cost = cost;
this.size = size;
}
@Override
public String toString()
{
return "DownloadLog [cost=" + cost + ", size=" + size + "]";
}
}