18 lines
389 B
C#
Raw Normal View History

2025-06-04 09:42:48 +08:00
using System;
using System.Collections.Generic;
using System.Text;
using Syc.Basic.Web.WMS.Localization;
using Volo.Abp.Application.Services;
namespace Syc.Basic.Web.WMS;
/* Inherit your application services from this class.
*/
public abstract class WMSAppService : ApplicationService
{
protected WMSAppService()
{
LocalizationResource = typeof(WMSResource);
}
}