19 lines
506 B
C#
19 lines
506 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace skyscraper5.src.Teletext
|
|
{
|
|
public class MonochromeDataField
|
|
{
|
|
public bool FirstSegmentFlag { get; internal set; }
|
|
public bool LastSegmentFlag { get; internal set; }
|
|
public bool FieldParity { get; internal set; }
|
|
public int LineOffset { get; internal set; }
|
|
public ushort FirstPixelPosition { get; internal set; }
|
|
public byte[] Pixels { get; internal set; }
|
|
}
|
|
}
|