10 lines
198 B
C#
10 lines
198 B
C#
namespace RemoteFrameBuffer.Common
|
|
{
|
|
public struct RgbPixel
|
|
{
|
|
public Byte Red { get; set; }
|
|
public Byte Green { get; set; }
|
|
public Byte Blue { get; set; }
|
|
}
|
|
}
|