VoteRecord.cs 424 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace TEAMModelOS.SDK.Models.Cosmos.Common.Inner
  5. {
  6. public class VoteRecord
  7. {
  8. public Dictionary<string, int> opt { get; set; } = new Dictionary<string, int>();
  9. public long time { get; set; }
  10. public string userid { get; set; }
  11. public string times { get; set; }
  12. public string endpoint { get; set; }
  13. }
  14. }