Files
speckle-sharp-host-apis/Speckle.Revit.Api/IRevitUnitsProxy.cs
T
2024-06-06 09:03:39 +01:00

15 lines
508 B
C#

using Autodesk.Revit.DB;
using Speckle.ProxyGenerator;
using Speckle.Revit2023.Interfaces;
namespace Speckle.Revit2023.Api;
[Proxy(typeof(Units), ImplementationOptions.UseExtendedInterfaces | ImplementationOptions.ProxyForBaseInterface)]
public partial interface IRevitUnitsProxy : IRevitUnits { }
[Proxy(
typeof(FormatOptions),
ImplementationOptions.UseExtendedInterfaces | ImplementationOptions.ProxyForBaseInterface
)]
public partial interface IRevitFormatOptionsProxy : IRevitFormatOptions { }