20 lines
635 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 PersistedStream
{
public string SessionId { get; set; } = null!;
public int Index { get; set; }
public byte[]? Content { get; set; }
public string? Name { get; set; }
public string? MimeType { get; set; }
public string? Extension { get; set; }
public string? Encoding { get; set; }
public string? Error { get; set; }
public int RefCount { get; set; }
public DateTime ExpirationDate { get; set; }
}
}