9 lines
136 B
C#
9 lines
136 B
C#
|
namespace BITKit.IO
|
|||
|
{
|
|||
|
public interface IAsset
|
|||
|
{
|
|||
|
string Name { get; set; }
|
|||
|
byte[] Buffer{ get; set; }
|
|||
|
}
|
|||
|
}
|