blob: 0c83316f8c27b01d15d0817d855695bb80d05952 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
using System;
namespace XUtliPoolLib
{
internal class XFileReadAsync
{
internal bool IsDone = false;
internal string Location = null;
internal CVSReader Reader = null;
internal XBinaryReader Data = null;
}
}
|