19 lines
603 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 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; }
}
}