14 lines
179 B
C#
14 lines
179 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Yavsc.Model.WorkFlow
|
|
{
|
|
public interface IContent
|
|
{
|
|
object Data { get; set; }
|
|
string MimeType { get; set; }
|
|
|
|
}
|
|
}
|
|
|