Files
KonSoft.Clean/modules/dispatch/src/KonSoft.Dispatch.HttpApi/Controllers/DispatchController.cs
2025-10-16 10:30:51 +08:00

14 lines
330 B
C#

using KonSoft.Dispatch.Localization;
using Volo.Abp.AspNetCore.Mvc;
namespace KonSoft.Dispatch.Controllers;
/* Inherit your controllers from this class.
*/
public abstract class DispatchController : AbpControllerBase
{
protected DispatchController()
{
LocalizationResource = typeof(DispatchResource);
}
}