using System;
using UnityEngine.Networking;
namespace MLAPI.Transports
{
///
/// A transport channel used by the MLAPI
///
[Serializable]
public class UNetChannel
{
///
/// The name of the channel
///
public NetworkChannel Id;
///
/// The type of channel
///
public QosType Type;
}
}