Created
November 23, 2017 09:21
-
-
Save olexale/7c25e4cab5b8341d9b93f66e85ce0621 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public interface IProfileApi | |
{ | |
Task<Profile> GetProfile(int id); | |
Task<Profile> GetMyProfile(); | |
Task UpdateMyProfile(Profile profile); | |
Task<IEnumerable<Post>> GetPosts(int profile); | |
… | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment