123456789101112131415161718192021222324252627282930 |
- using System;
- using System.Collections.Generic;
- using Utilities;
- namespace SMBLibrary.SMB1
- {
-
-
-
- public class Transaction2SetFSInformationResponse : Transaction2Subcommand
- {
- public Transaction2SetFSInformationResponse() : base()
- {
- }
- public override Transaction2SubcommandName SubcommandName
- {
- get
- {
- return Transaction2SubcommandName.TRANS2_SET_FS_INFORMATION;
- }
- }
- }
- }
|