16 lines
323 B
C#
16 lines
323 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace WCS.Model.ApiModel.Home
|
|
{
|
|
public class ResetShelfStatusRequest : RequestBase
|
|
{
|
|
public List<int> SelfIds { get; set; }
|
|
|
|
public bool IsResetAll { get; set; }
|
|
|
|
public List<string> GroupNames { get; set; }
|
|
}
|
|
}
|