@using BTCPayServer.Plugins.FixedFloat @using Newtonsoft.Json @using Newtonsoft.Json.Linq @inject FixedFloatService FixedFloatService @{ var storeId = ((JObject)JObject.Parse(JsonConvert.SerializeObject(Model)))["StoreId"].Value(); var settings = await FixedFloatService.GetFixedFloatForStore(storeId); if (settings?.Enabled is true) { } }