TrimDescriptor.cs 346 B

123456789101112131415161718
  1. namespace SvdCli.Storage
  2. {
  3. public class TrimDescriptor
  4. {
  5. public TrimDescriptor(long offset, uint length)
  6. {
  7. Offset = offset;
  8. Length = length;
  9. }
  10. public TrimDescriptor()
  11. {
  12. }
  13. public long Offset { get; set; }
  14. public uint Length { get; set; }
  15. }
  16. }