13 lines
333 B
C#
13 lines
333 B
C#
using System;
|
|
using System.Data;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace PluralKit.Core
|
|
{
|
|
public interface IPKTransaction: IDbTransaction, IAsyncDisposable
|
|
{
|
|
public Task CommitAsync(CancellationToken ct = default);
|
|
public Task RollbackAsync(CancellationToken ct = default);
|
|
}
|
|
} |