using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace NextTreatMesDemo.Models { public class Re_ProductionRecord { public string userId { get; set; } public string taskId { get; set; } public string deviceId { get; set; } public string productionType { get; set; } public string creationTime { get; set; } public Discriptin[] description { get; set; } } public class Discriptin { public string key; public string value; } }