summaryrefslogtreecommitdiff
path: root/lib/infrastructure/cloning/Serializer.cs
blob: dcefa77fa7839ce77b7787522bc8a3d1b5a11e70 (plain)
1
2
3
4
5
6
7
8
9
10
using System;

namespace jive.infrastructure.cloning
{
  public interface Serializer<T> : IDisposable
  {
    void serialize(T to_serialize);
    T deserialize();
  }
}