Files
6098/Cowain.Bake.Model/Models/CCommandType.cs

21 lines
456 B
C#

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";
}
}
}