Registration.cs 545 B

12345678910111213141516171819
  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 long Id { get; set; }
  9. public string Psinstance { get; set; }
  10. public string LocationIp { get; set; }
  11. public DateTime? LastActivity { get; set; }
  12. public int DocumentProcessedCnt { get; set; }
  13. public int DocumentFailedCnt { get; set; }
  14. public DateTime Created { get; set; }
  15. public DateTime? Modified { get; set; }
  16. }
  17. }