using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
using System.Threading;
namespace HslCommunication.Core.Net
{
///
/// 文件传送的异步对象
///
internal class FileStateObject : StateOneBase
{
///
/// 操作的流
///
public Stream Stream { get; set; }
}
}