types/SPClientFileConvertParameter.cs

/*
 * SPClientFileConvertParameter.cs
 *
 * Copyright (c) 2017 karamem0
 *
 * This software is released under the MIT License.
 * https://github.com/karamem0/SPClient/blob/master/LICENSE
 */
 
namespace SPClient {
 
    /// <summary>
    /// Represents the SPClientFile functions parameter.
    /// </summary>
    public class SPClientFileConvertParameter {
         
        /// <summary>
        /// Gets the parent client object.
        /// </summary>
        public Microsoft.SharePoint.Client.ClientObject ClientObject { get; private set; }
 
        /// <summary>
        /// Initializes the new instance of <see cref="SPClient.SPClientFileConvertParameter"/> class.
        /// </summary>
        /// <param name="clientObject">the client object which converts to a file.</param>
        public SPClientFileConvertParameter(Microsoft.SharePoint.Client.ListItem clientObject) {
            this.ClientObject = clientObject;
        }
 
    }
 
}