Exemplo n.º 1
0
 public ValueTask set_color(IColor4LikeCachedEntity value)
 {
     __color = null;
     return(EventHorizonBlazorInterop.Set(
                this.___guid,
                "color",
                value
                ));
 }
Exemplo n.º 2
0
 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);
 }