first commit

This commit is contained in:
2025-09-08 14:15:45 +08:00
commit 0ecba9619f
622 changed files with 37941 additions and 0 deletions

View File

@ -0,0 +1,17 @@
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);
}
}