11 lines
311 B
C#
11 lines
311 B
C#
using Speckle.ProxyGenerator;
|
|
|
|
namespace ProxyInterfaceConsumerForPnP.Interfaces
|
|
{
|
|
[Speckle.ProxyGenerator.Proxy(typeof(Microsoft.SharePoint.Client.SecurableObject), ImplementationOptions.None)]
|
|
public partial interface ISecurableObject : IClientObject
|
|
{
|
|
// public virtual void X();
|
|
}
|
|
}
|