15 lines
371 B
C#
15 lines
371 B
C#
using KonSoft.TenantManagement.Localization;
|
|
using Volo.Abp.AspNetCore.Mvc;
|
|
|
|
namespace KonSoft.TenantManagement.Controllers;
|
|
|
|
/* Inherit your controllers from this class.
|
|
*/
|
|
public abstract class TenantManagementController : AbpControllerBase
|
|
{
|
|
protected TenantManagementController()
|
|
{
|
|
LocalizationResource = typeof(TenantManagementResource);
|
|
}
|
|
}
|