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