临河任务调度
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
295B

  1. using Acme.BookStore.Localization;
  2. using Volo.Abp.AspNetCore.Components;
  3. namespace Acme.BookStore.Blazor.Client;
  4. public abstract class BookStoreComponentBase : AbpComponentBase
  5. {
  6. protected BookStoreComponentBase()
  7. {
  8. LocalizationResource = typeof(BookStoreResource);
  9. }
  10. }