public ValueTask set_color(IColor4LikeCachedEntity value) { __color = null; return(EventHorizonBlazorInterop.Set( this.___guid, "color", value )); }
public async ValueTask <IColor4LikeCachedEntity> get_color() { if (__color == null) { __color = await EventHorizonBlazorInterop.GetClass <IColor4LikeCachedEntity>( this.___guid, "color", (entity) => { return(new IColor4LikeCachedEntity() { ___guid = entity.___guid }); } ); } return(__color); }