blob: 014fa86802f96c74d4f1789437b75e7c8fcf09ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.PPC.Common.FileSystem
{
/// <summary>
/// Represents a PPC file system remote service.
/// </summary>
/// <seealso cref="Tango.PPC.Common.IPPCService" />
public interface IFileSystemService : IPPCService
{
/// <summary>
/// Gets or sets a value indicating whether to enable the WebRTC transport channel.
/// </summary>
bool EnableWebRTC { get; set; }
}
}
|