123456789101112131415161718192021222324252627 |
- using System;
- using System.Collections.Generic;
- using System.IO;
- using System.Text;
- namespace SMBLibrary.Server
- {
- internal class OpenFileObject
- {
- public uint TreeID;
- public string Path;
- public object Handle;
- public OpenFileObject(uint treeID, string path, object handle)
- {
- TreeID = treeID;
- Path = path;
- Handle = handle;
- }
- }
- }
|