123456789101112131415 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace TEAMModelOS.SDK.Models.Cosmos.Common.Inner
- {
- public class VoteRecord
- {
- public Dictionary<string, int> opt { get; set; } = new Dictionary<string, int>();
- public long time { get; set; }
- public string userid { get; set; }
- public string times { get; set; }
- public string endpoint { get; set; }
- }
- }
|