hn-dotnet/Domain/ILinkRepository.cs
2020-12-01 20:30:17 +01:00

9 lines
137 B
C#

using System.Threading.Tasks;
namespace HN.Domain
{
public interface ILinkRepository
{
Task AddAsync(Link link);
}
}