14 lines
178 B
C#
14 lines
178 B
C#
|
12 years ago
|
using System;
|
||
|
|
using System.Collections.Generic;
|
||
|
|
|
||
|
|
namespace yavscModel.WorkFlow
|
||
|
|
{
|
||
|
|
public interface IContent
|
||
|
|
{
|
||
|
|
object Data { get; set; }
|
||
|
|
string MimeType { get; set; }
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|