Guest User

Untitled

a guest
Jan 21st, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. public interface IJsonService
  2. {
  3. T Deserialize<T>(string source) where T : class;
  4. object Deserialize(Type type, string source);
  5. string Serialize(object message);
  6. }
Add Comment
Please, Sign In to add comment