using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Perforce.P4
{
///
/// Specifies resource access privileges for Perforce users for a specific
/// Perforce repository.
///
public class ProtectionTable : List
{
///
/// Construct ProtectionTable using a Protection Entry
///
/// Protection Entry
public ProtectionTable(ProtectionEntry entry)
{
Entry = entry;
}
///
/// Protection Table Entry
///
public ProtectionEntry Entry { get; set; }
}
}