Files
KonSoft.Clean/modules/tenant-management/src/KonSoft.TenantManagement.HttpApi/Controllers/TenantManagementController.cs
2025-09-08 14:15:45 +08:00

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);
}
}