Registration.cs 843 B

12345678910111213141516171819202122232425262728
  1. using System;
  2. using System.Collections.Generic;
  3. #nullable disable
  4. namespace BO.AppServer.Data.Entity
  5. {
  6. public partial class Registration
  7. {
  8. public Registration()
  9. {
  10. Metadocuments = new HashSet<Metadocument>();
  11. }
  12. // public long Id { get; set; }
  13. public string Psinstance { get; set; }
  14. public string LocationIp { get; set; }
  15. public int PoolSize { get; set; }
  16. public bool Denided { get; set; }
  17. public DateTime? LastActivity { get; set; }
  18. public int DocumentProcessedCnt { get; set; }
  19. public int DocumentFailedCnt { get; set; }
  20. public DateTime Created { get; set; }
  21. public DateTime? Modified { get; set; }
  22. public virtual ICollection<Metadocument> Metadocuments { get; set; }
  23. }
  24. }