You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
597 B

1 year ago
1 year ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace CDPShared
  7. {
  8. public class CircleViewEventRecord
  9. {
  10. public string id // cosmos db require id
  11. {
  12. get
  13. {
  14. return MsgId;
  15. }
  16. }
  17. public string FileId { get; set; }
  18. public string MsgId { get; set; }
  19. public DateTime Event { get; set; }
  20. public Int32 MsgType { get; set; }
  21. public string Message { get; set; }
  22. public string Meta { get; set; }
  23. }
  24. }