public ValueTask set_options(INodeMaterialOptionsCachedEntity value) { __options = null; return(EventHorizonBlazorInterop.Set( this.___guid, "options", value )); }
public async ValueTask <INodeMaterialOptionsCachedEntity> get_options() { if (__options == null) { __options = await EventHorizonBlazorInterop.GetClass <INodeMaterialOptionsCachedEntity>( this.___guid, "options", (entity) => { return(new INodeMaterialOptionsCachedEntity() { ___guid = entity.___guid }); } ); } return(__options); }