Registration.cs 757 B

1234567891011121314151617181920212223242526
  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 DateTime? LastActivity { get; set; }
  16. public int DocumentProcessedCnt { get; set; }
  17. public int DocumentFailedCnt { get; set; }
  18. public DateTime Created { get; set; }
  19. public DateTime? Modified { get; set; }
  20. public virtual ICollection<Metadocument> Metadocuments { get; set; }
  21. }
  22. }