PersistedStream.cs 635 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. namespace CodeFirstExistingDatabaseSample.ReportServerTempDB.Models
  4. {
  5. public partial class PersistedStream
  6. {
  7. public string SessionId { get; set; } = null!;
  8. public int Index { get; set; }
  9. public byte[]? Content { get; set; }
  10. public string? Name { get; set; }
  11. public string? MimeType { get; set; }
  12. public string? Extension { get; set; }
  13. public string? Encoding { get; set; }
  14. public string? Error { get; set; }
  15. public int RefCount { get; set; }
  16. public DateTime ExpirationDate { get; set; }
  17. }
  18. }