You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
665 B
C#
27 lines
665 B
C#
using System;
|
|
using HcUtility.Core;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace DSWeb.Areas.MvcShipping.Models.MsOpSeaeTDSFTTemplate
|
|
{
|
|
|
|
[JsonObject]
|
|
public class SortObject
|
|
{
|
|
public string property { get; set; }
|
|
public string direction { get; set; }
|
|
}
|
|
|
|
[JsonObject]
|
|
public class MsOpSeaeTDSFTTemplateModel
|
|
{
|
|
public string username { get; set; }
|
|
public string gid { get; set; }
|
|
public string mbname { get; set; }
|
|
public string mbtype { get; set; }
|
|
public string mbtext { get; set; }
|
|
public string createtime { get; set; }
|
|
public string userid { get; set; }
|
|
}
|
|
}
|