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