15 lines
410 B
C#
Raw Normal View History

2024-08-21 16:50:14 +08:00
using System;
using System.Collections.Generic;
namespace CodeFirstExistingDatabaseSample.ReportServerTempDB.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; }
}
}