17 lines
345 B
C#
17 lines
345 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace WCS.Model.ApiModel.OutStore
|
|
{
|
|
public class ResponseCommonModify<T>:ResponseCommon
|
|
{
|
|
public ResponseCommonDataDetail<T> Data { get; set; }
|
|
}
|
|
|
|
public class ResponseCommonDataDetail<T>
|
|
{
|
|
public List<T> Details { get; set; }
|
|
}
|
|
}
|