25 lines
574 B
C#
25 lines
574 B
C#
namespace LSServerService
|
|
{
|
|
using System;
|
|
using System.IO;
|
|
|
|
internal class LSFileData
|
|
{
|
|
public int dwFileId;
|
|
public int dwRevPacketCount;
|
|
public int dwTotalBytes;
|
|
public int dwTotalCount;
|
|
public uint dwUserId = 0;
|
|
public FileStream fs;
|
|
public int lastWriteTime;
|
|
|
|
public LSFileData()
|
|
{
|
|
this.dwFileId = this.dwTotalBytes = this.dwTotalCount = this.dwRevPacketCount = 0;
|
|
this.fs = null;
|
|
this.lastWriteTime = Environment.TickCount;
|
|
}
|
|
}
|
|
}
|
|
|