mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-12 05:35:17 +00:00
23 lines
457 B
C#
23 lines
457 B
C#
namespace BinaryObjectScanner.Wrappers
|
|
{
|
|
/// <summary>
|
|
/// Location that the data originated from
|
|
/// </summary>
|
|
public enum DataSource
|
|
{
|
|
/// <summary>
|
|
/// Unknown origin / testing
|
|
/// </summary>
|
|
UNKNOWN = 0,
|
|
|
|
/// <summary>
|
|
/// Byte array with offset
|
|
/// </summary>
|
|
ByteArray = 1,
|
|
|
|
/// <summary>
|
|
/// Stream
|
|
/// </summary>
|
|
Stream = 2,
|
|
}
|
|
} |