yavsc/yavscModel/WorkFlow/IContent.cs

13 lines
178 B
C#
Raw Normal View History

2014-07-16 20:35:03 +02:00
using System;
using System.Collections.Generic;
namespace yavscModel.WorkFlow
{
public interface IContent
{
object Data { get; set; }
string MimeType { get; set; }
}
}