CircularReadGroup.cs 489 B

12345678910111213141516171819202122
  1. using XF.Domain.Repository;
  2. namespace Hotline.Article
  3. {
  4. public class CircularReadGroup:CreationEntity
  5. {
  6. public string CircularId { get; set; }
  7. public string? UserId{ get; set; }
  8. public string? UserName { get; set; }
  9. public string? OrgId { get; set; }
  10. public string? OrgName { get; set; }
  11. public bool IsRead { get; set; }
  12. public DateTime? ReadTime { get; set; }
  13. public bool? IsTimeOut { get; set; }
  14. }
  15. }