mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-06 07:16:09 +00:00
9 lines
161 B
C#
9 lines
161 B
C#
namespace Octokit.Internal
|
|
{
|
|
public interface IJsonSerializer
|
|
{
|
|
string Serialize(object item);
|
|
T Deserialize<T>(string json);
|
|
}
|
|
}
|