2025-07-08 14:01:10 +08:00

15 lines
404 B
C#

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; }
}
}