mirror of
https://github.com/streetwriters/notesnook-sync-server.git
synced 2026-02-12 19:22:45 +00:00
10 lines
176 B
C#
10 lines
176 B
C#
using System;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Streetwriters.Data.Interfaces
|
|
{
|
|
public interface IUnitOfWork : IDisposable
|
|
{
|
|
Task<bool> Commit();
|
|
}
|
|
} |