Files
notesnook-sync-server_custo…/Streetwriters.Data/Interfaces/IUnitOfWork.cs
2022-12-28 16:20:25 +05:00

10 lines
176 B
C#

using System;
using System.Threading.Tasks;
namespace Streetwriters.Data.Interfaces
{
public interface IUnitOfWork : IDisposable
{
Task<bool> Commit();
}
}