mirror of
https://github.com/sphildreth/roadie
synced 2024-11-10 14:54:11 +00:00
12 lines
236 B
C#
12 lines
236 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Roadie.Library.Caching
|
|
{
|
|
public interface ICacheSerializer
|
|
{
|
|
string Serialize(object o);
|
|
TOut Deserialize<TOut>(string s);
|
|
}
|
|
}
|