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