CCNet.Build.Confluence.ConfluenceClient.ToPageSummary C# (CSharp) Method

ToPageSummary() private static method

private static ToPageSummary ( RemotePageSummary remotePageSummary ) : PageSummary
remotePageSummary CCNet.Build.Confluence.ConfluenceApi.RemotePageSummary
return PageSummary
		private static PageSummary ToPageSummary(RemotePageSummary remotePageSummary)
		{
			return new PageSummary
			{
				Id = remotePageSummary.id,
				ParentId = remotePageSummary.parentId,
				Name = remotePageSummary.title,
				Space = remotePageSummary.space,
				Version = remotePageSummary.version
			};
		}