13 lines
356 B
C#
13 lines
356 B
C#
using collAnon.Client.Services;
|
|
using Microsoft.AspNetCore.Components;
|
|
|
|
namespace decePubClient.LayerComponents
|
|
{
|
|
public class LocalizableComponentBase : ComponentBase
|
|
{
|
|
[Inject] public CoalescingStringLocalizer Localizer { get; set; }
|
|
protected List<Func<Task>> AfterRenderAsyncJobs = new();
|
|
protected bool IsLoading { get; set; } = true;
|
|
}
|
|
}
|