using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WDProduceToolUpdate { [Serializable] public class WdProduceToolVersion { public int id { get; set; } public string version_code { get; set; } public long create_time { get; set; } public string remark { get; set; } public bool bool_active { get; set; } public string update_file_path { get; set; } public string local_path { get; set; } public string server_url { get; set; } public bool updated { get; set; } } }