10 lines
195 B
C#
10 lines
195 B
C#
|
|
namespace Bytes
|
|
{
|
|
public class IntDataBytes : BytesData
|
|
{
|
|
public IntDataBytes(int intValue) { IntValue = intValue; }
|
|
public int IntValue { get; private set; }
|
|
}
|
|
}
|