ln.types/io/ContentSource.cs

9 lines
122 B
C#

using System;
namespace ln.types.io
{
public interface ContentSource
{
byte[] Content { get; }
}
}