using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tango.PPC.Common.FileSystem { /// /// Represents a PPC file system remote service. /// /// public interface IFileSystemService : IPPCService { /// /// Gets or sets a value indicating whether to enable the WebRTC transport channel. /// bool EnableWebRTC { get; set; } } }