femto-backend/Femto.Common/Infrastructure/Outbox/IOutboxContext.cs

9 lines
No EOL
164 B
C#

using Microsoft.EntityFrameworkCore;
namespace Femto.Common.Infrastructure.Outbox;
public interface IOutboxContext
{
DbSet<OutboxEntry> Outbox { get; }
}