18 lines
529 B
C#
Raw Permalink Normal View History

2024-08-21 16:50:14 +08:00
using System;
using System.Collections.Generic;
namespace CodeFirstExistingDatabaseSample.ReportServer.Models
{
public partial class ChunkDatum
{
public Guid ChunkId { get; set; }
public Guid SnapshotDataId { get; set; }
public byte? ChunkFlags { get; set; }
public string? ChunkName { get; set; }
public int? ChunkType { get; set; }
public short? Version { get; set; }
public string? MimeType { get; set; }
public byte[]? Content { get; set; }
}
}