ChunkSegmentMapping.cs 410 B

1234567891011121314
  1. using System;
  2. using System.Collections.Generic;
  3. namespace CodeFirstExistingDatabaseSample.ReportServerTempDB.Models
  4. {
  5. public partial class ChunkSegmentMapping
  6. {
  7. public Guid ChunkId { get; set; }
  8. public Guid SegmentId { get; set; }
  9. public long StartByte { get; set; }
  10. public int LogicalByteCount { get; set; }
  11. public int ActualByteCount { get; set; }
  12. }
  13. }