| 12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- #nullable disable
- namespace BO.AppServer.Data.Entity
- {
- public partial class Registration
- {
- public long Id { get; set; }
- public string Psinstance { get; set; }
- public string LocationIp { 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; }
- }
- }
|