11 lines
205 B
C#
11 lines
205 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace Jambo.Domain.Aggregates.Posts
|
|
{
|
|
public interface IPostWriteOnlyRepository
|
|
{
|
|
Task AddPost(Post post);
|
|
Task UpdatePost(Post post);
|
|
}
|
|
}
|