Files
KonSoft.Clean/modules/payment/src/KonSoft.Payment.Application/PaymentAppService.cs
2025-09-08 14:15:45 +08:00

18 lines
397 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using KonSoft.Payment.Localization;
using Volo.Abp.Application.Services;
namespace KonSoft.Payment;
/* Inherit your application services from this class.
*/
public abstract class PaymentAppService : ApplicationService
{
protected PaymentAppService()
{
LocalizationResource = typeof(PaymentResource);
}
}