using collAnon.Client.Services; using Microsoft.AspNetCore.Components; namespace decePubClient.LayerComponents { public class LocalizableComponentBase : ComponentBase { [Inject] public CoalescingStringLocalizer Localizer { get; set; } protected List> AfterRenderAsyncJobs = new(); protected bool IsLoading { get; set; } = true; } }