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
	{
		public ProtectionTable 
			(
			ProtectionEntry entry
			)
		{Entry = entry;}
		public ProtectionEntry Entry { get; set; }
	}
}