| 12345678910111213141516171819202122232425262728 |
- using System;
- using System.Collections.Generic;
- #nullable disable
- namespace BO.AppServer.Data.Entity
- {
- public partial class Registration
- {
- public Registration()
- {
- Metadocuments = new HashSet<Metadocument>();
- }
- // public long Id { get; set; }
- public string Psinstance { get; set; }
- public string LocationIp { get; set; }
- public int PoolSize { get; set; }
- public bool Denided { get; set; }
- public DateTime? LastActivity { get; set; }
- public int DocumentProcessedCnt { get; set; }
- public int DocumentFailedCnt { get; set; }
- public DateTime Created { get; set; }
- public DateTime? Modified { get; set; }
- public virtual ICollection<Metadocument> Metadocuments { get; set; }
- }
- }
|