10 lines
203 B
C#
10 lines
203 B
C#
|
|
namespace Bytes
|
|
{
|
|
public class BoolDataBytes : BytesData
|
|
{
|
|
public BoolDataBytes(bool boolValue) { BoolValue = boolValue; }
|
|
public bool BoolValue { get; private set; }
|
|
}
|
|
}
|