diff options
| author | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2020-04-09 00:29:06 +0300 |
|---|---|---|
| committer | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2020-04-09 00:29:06 +0300 |
| commit | 5774f40b650a376e9b622dba9df6c43589b0d398 (patch) | |
| tree | 8d80f23cbb9cc264cc5be1bd82c52402eed612e6 /Software/Visual_Studio/PPC/Tango.PPC.Common/FileSystem/IFileSystemService.cs | |
| parent | 42391bb46aa9dda0f56a7909268a2cffdf36f1d8 (diff) | |
| download | Tango-5774f40b650a376e9b622dba9df6c43589b0d398.tar.gz Tango-5774f40b650a376e9b622dba9df6c43589b0d398.zip | |
Logs, Comments & General organization on FSE/PPC.
Several improvements.
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.Common/FileSystem/IFileSystemService.cs')
| -rw-r--r-- | Software/Visual_Studio/PPC/Tango.PPC.Common/FileSystem/IFileSystemService.cs | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/Software/Visual_Studio/PPC/Tango.PPC.Common/FileSystem/IFileSystemService.cs b/Software/Visual_Studio/PPC/Tango.PPC.Common/FileSystem/IFileSystemService.cs index 6cf3321a3..7a80db9c7 100644 --- a/Software/Visual_Studio/PPC/Tango.PPC.Common/FileSystem/IFileSystemService.cs +++ b/Software/Visual_Studio/PPC/Tango.PPC.Common/FileSystem/IFileSystemService.cs @@ -6,9 +6,15 @@ using System.Threading.Tasks; namespace Tango.PPC.Common.FileSystem { - public interface IFileSystemService + /// <summary> + /// Represents a PPC file system remote service. + /// </summary> + /// <seealso cref="Tango.PPC.Common.IPPCService" /> + public interface IFileSystemService : IPPCService { - bool Enabled { get; set; } + /// <summary> + /// Gets or sets a value indicating whether to enable the WebRTC transport channel. + /// </summary> bool EnableWebRTC { get; set; } } } |
