mirror of
https://github.com/fergalmoran/podnoms.git
synced 2026-02-07 16:25:55 +00:00
10 lines
157 B
C#
Executable File
10 lines
157 B
C#
Executable File
using System;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace PodNoms.Api.Persistence
|
|
{
|
|
public interface IUnitOfWork
|
|
{
|
|
Task CompleteAsync();
|
|
}
|
|
} |