ProtectionTable.cs #1

  • //
  • guest/
  • eskopljak/
  • p4api.net/
  • main/
  • p4api.net - Copy/
  • ProtectionTable.cs
  • View
  • Commits
  • Open Download .zip Download (433 B)
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Perforce.P4
{
	/// <summary>
	/// Specifies resource access privileges for Perforce users for a specific
	/// Perforce repository. 
	/// </summary>
	public class ProtectionTable : List<ProtectionEntry>
	{
		public ProtectionTable 
			(
			ProtectionEntry entry
			)
		{Entry = entry;}

		public ProtectionEntry Entry { get; set; }
	}
}
# Change User Description Committed
#1 28480 eskopljak submit