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.

35 lines
733 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Application.Service.DataSync.Dto
{
public class LineSyncDto
{
/// <summary>
/// 类型保存save、删除del
/// </summary>
public string Type { get; set; }
/// <summary>
/// 数据列表
/// </summary>
public List<LineSyncModel> DataList { get; set; }
}
public class LineSyncModel
{
/// <summary>
/// 代码
/// </summary>
public string Code { get; set; }
/// <summary>
/// 名称
/// </summary>
public string Name { get; set; }
}
}