skyscraper8/skyscraper8/Teletext/MonochromeDataField.cs
feyris-tan ef86554f9a Import
2025-05-12 22:09:16 +02:00

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; }
}
}