12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using SMBLibrary.RPC;
- using Utilities;
- namespace SMBLibrary.Services
- {
- public interface IShareInfoContainer : INDRStructure
- {
- uint Level
- {
- get;
- }
- }
- }
|