SPMS_API/SPMS.Domain/Interfaces/IWebhookLogRepository.cs
2026-02-11 10:10:11 +09:00

8 lines
133 B
C#

using SPMS.Domain.Entities;
namespace SPMS.Domain.Interfaces;
public interface IWebhookLogRepository : IRepository<WebhookLog>
{
}