9 lines
No EOL
164 B
C#
9 lines
No EOL
164 B
C#
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace Femto.Common.Infrastructure.Outbox;
|
|
|
|
public interface IOutboxContext
|
|
{
|
|
DbSet<OutboxEntry> Outbox { get; }
|
|
|
|
} |