2024-08-21 16:50:14 +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; }
}
}