- using System;
- using System.Collections.Generic;
- namespace CodeFirstExistingDatabaseSample.ReportServer.Models
- {
- public partial class ChunkSegmentMapping
- {
- public Guid ChunkId { get; set; }
- public Guid SegmentId { get; set; }
- public long StartByte { get; set; }
- public int LogicalByteCount { get; set; }
- public int ActualByteCount { get; set; }
- }
- }
|