aboutsummaryrefslogtreecommitdiff
path: root/Backend/Api/Api/Interfaces/IPostService.cs
blob: 6c34e6905041f04143993c87abc661a49a8f5922 (plain) (blame)
1
2
3
4
5
6
7
8
9
using Api.Models;

namespace Api.Interfaces
{
    public interface IPostService
    {
        PostSend addPost(PostReceive post);
    }
}