SPMS_API/SPMS.Infrastructure/Persistence/Repositories/WebhookLogRepository.cs
2026-02-11 10:10:11 +09:00

10 lines
276 B
C#

using SPMS.Domain.Entities;
using SPMS.Domain.Interfaces;
namespace SPMS.Infrastructure.Persistence.Repositories;
public class WebhookLogRepository : Repository<WebhookLog>, IWebhookLogRepository
{
public WebhookLogRepository(AppDbContext context) : base(context) { }
}