IOpaqueData.cs 242 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace MatrixIO.IO.Bmff
  6. {
  7. public interface IOpaqueData
  8. {
  9. long DataOffset { get; }
  10. long DataLength { get; }
  11. }
  12. }