ReportModel.cs 602 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. namespace HyperCube.Models
  6. {
  7. public class ReportModel
  8. {
  9. public string FileName { get; set; }
  10. public string FileFormat { get; set; }
  11. public string FileSize { get; set; }
  12. public string NounGroups { get; set; }
  13. public string NounGroupsSorted { get; set; }
  14. public string Entities { get; set; }
  15. public string EntitiesNounGroups { get; set; }
  16. public string Keywords1 { get; set; }
  17. public string Keywords2 { get; set; }
  18. }
  19. }