EanFrame.cs 166 B

123456789101112131415
  1. using System;
  2. namespace Xft
  3. {
  4. public struct EanFrame
  5. {
  6. public ushort X;
  7. public ushort Y;
  8. public ushort Width;
  9. public ushort Height;
  10. }
  11. }