hackernet/HackerNet.Domain/ICommentRepository.cs
2021-12-14 09:59:36 +01:00

6 lines
97 B
C#

namespace HackerNet.Domain;
public interface ICommentRepository
{
void Add(Comment comment);
}