19 lines
429 B
C#
19 lines
429 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace WCS.Model.ApiModel.Home
|
|
{
|
|
public class GetShelfServerResponse : ResponseBase<List<GetShelfServerResponseItem>>
|
|
{
|
|
public List<GetShelfServerResponseItem> Data { get; set; }
|
|
}
|
|
|
|
public class GetShelfServerResponseItem
|
|
{
|
|
public string BigShelfCode { get; set; }
|
|
|
|
public string ServerIp { get; set; }
|
|
}
|
|
}
|