Batch.cs 568 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. namespace CodeFirstExistingDatabaseSample.ReportServer.Models
  4. {
  5. public partial class Batch
  6. {
  7. public Guid BatchId { get; set; }
  8. public DateTime AddedOn { get; set; }
  9. public string Action { get; set; } = null!;
  10. public string? Item { get; set; }
  11. public string? Parent { get; set; }
  12. public string? Param { get; set; }
  13. public bool? BoolParam { get; set; }
  14. public byte[]? Content { get; set; }
  15. public string? Properties { get; set; }
  16. }
  17. }