yavsc/yavscModel/WorkFlow/IContent.cs

13 lines
179 B
C#
Raw Normal View History

2014-07-16 20:35:03 +02:00
using System;
using System.Collections.Generic;
2014-10-06 04:58:47 +02:00
namespace Yavsc.Model.WorkFlow
2014-07-16 20:35:03 +02:00
{
public interface IContent
{
object Data { get; set; }
string MimeType { get; set; }
}
}