public ValueTask set_animationPropertiesOverride(AnimationPropertiesOverride value)
 {
     __animationPropertiesOverride = null;
     return(EventHorizonBlazorInterop.Set(
                this.___guid,
                "animationPropertiesOverride",
                value
                ));
 }
 public async ValueTask <AnimationPropertiesOverride> get_animationPropertiesOverride()
 {
     if (__animationPropertiesOverride == null)
     {
         __animationPropertiesOverride = await EventHorizonBlazorInterop.GetClass <AnimationPropertiesOverride>(
             this.___guid,
             "animationPropertiesOverride",
             (entity) =>
         {
             return(new AnimationPropertiesOverride()
             {
                 ___guid = entity.___guid
             });
         }
             );
     }
     return(__animationPropertiesOverride);
 }