10 lines
206 B
C#
10 lines
206 B
C#
using Flowsharp.Models;
|
|
|
|
namespace Flowsharp.Serialization
|
|
{
|
|
public interface IWorkflowSerializer
|
|
{
|
|
string Serialize(Workflow workflow);
|
|
Workflow Deserialize(string data);
|
|
}
|
|
} |