10 lines
219 B
C#
10 lines
219 B
C#
|
|
namespace Bytes
|
|
{
|
|
public class ObjectDataBytes : BytesData
|
|
{
|
|
public ObjectDataBytes(object objectParam) { ObjectValue = objectParam; }
|
|
public object ObjectValue { get; private set; }
|
|
}
|
|
}
|