123456789101112131415161718192021222324252627282930 |
- using System;
- using System.Collections.Generic;
- using Utilities;
- namespace SMBLibrary.SMB1
- {
-
-
-
- public class NTTransactSetSecurityDescriptorResponse : NTTransactSubcommand
- {
- public NTTransactSetSecurityDescriptorResponse()
- {
- }
- public override NTTransactSubcommandName SubcommandName
- {
- get
- {
- return NTTransactSubcommandName.NT_TRANSACT_SET_SECURITY_DESC;
- }
- }
- }
- }
|