Files
ProxyGenerator/src-examples/ProxyInterfaceConsumerForPnP/Interfaces/ISecurableObject.cs
T
Adam Hathcock e341772cbc add csharpier
2024-05-21 16:34:46 +01:00

9 lines
253 B
C#

namespace ProxyInterfaceConsumerForPnP.Interfaces
{
[ProxyInterfaceGenerator.Proxy(typeof(Microsoft.SharePoint.Client.SecurableObject))]
public partial interface ISecurableObject : IClientObject
{
// public virtual void X();
}
}