yavsc/yavscModel/WorkFlow/IContent.cs

14 lines
179 B
C#

12 years ago
using System;
using System.Collections.Generic;
11 years ago
namespace Yavsc.Model.WorkFlow
12 years ago
{
public interface IContent
{
object Data { get; set; }
string MimeType { get; set; }
}
}