1234567891011121314151617181920212223242526272829303132 |
- using System;
- using System.Collections.Generic;
- using Utilities;
- namespace SMBLibrary.SMB1
- {
-
-
-
- public class NTTransactSetSecurityDescriptorResponse : NTTransactSubcommand
- {
- public const int ParametersLength = 0;
- public NTTransactSetSecurityDescriptorResponse()
- {
- }
- public override NTTransactSubcommandName SubcommandName
- {
- get
- {
- return NTTransactSubcommandName.NT_TRANSACT_SET_SECURITY_DESC;
- }
- }
- }
- }
|