PsStatusHistory.cs 555 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using qdr.fnd.core.pqueue.Enums;
  7. namespace qdr.fnd.core.pqueue
  8. {
  9. public class PsStatusHistory
  10. {
  11. #region *** Properties ***
  12. public DateTime Created { get; }
  13. public PsStatusEnum PreviousStatus { get; }
  14. public bool PreviousIsStatusTransient { get; }
  15. public string? Description { get; }
  16. #endregion
  17. #region *** Constructors ***
  18. #endregion
  19. }
  20. }