using System; using System.Collections.Generic; namespace CodeFirstExistingDatabaseSample.ReportServerTempDB.Models { public partial class SegmentedChunk { public Guid ChunkId { get; set; } public Guid SnapshotDataId { get; set; } public byte ChunkFlags { get; set; } public string ChunkName { get; set; } = null!; public int ChunkType { get; set; } public short Version { get; set; } public string? MimeType { get; set; } public string Machine { get; set; } = null!; public long SegmentedChunkId { get; set; } } }