18 lines
529 B
C#
18 lines
529 B
C#
![]() |
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; }
|
|||
|
}
|
|||
|
}
|