Implement Miscellaneous Client emoji and markdown

This commit is contained in:
Haacked
2013-10-06 22:26:09 -07:00
parent f8e7d2da29
commit 4e445093f7
17 changed files with 108 additions and 60 deletions
@@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
namespace Octokit.Reactive
{
public interface IObservableMiscellaneousClient
{
[SuppressMessage("Microsoft.Design", "CA1024:UsePropertiesWhereAppropriate",
Justification = "Makes a network request")]
IObservable<IReadOnlyDictionary<string, Uri>> GetEmojis();
}
}