using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Cowain.Bake.Model.Models { public class CCommandType { public string Service { get; set; } public string Func { get; set; } public string UrlCmd { get; set; } public CCommandType() { Service = "UploadMesStation"; Func = "UploadCommon"; } } }