Files
upper-limit-crawler/ULObj.cs

25 lines
393 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace upper_limit_crawler
{
class ULObj
{
protected ULDataMgr m_DataMgr = null;
protected int m_iLastTime = 0;
public ULObj(ULDataMgr DataMgr)
{
m_DataMgr = DataMgr;
}
public virtual void Refresh(int iCurTime)
{
m_iLastTime = iCurTime;
}
}
}