using System; using System.Collections.Generic; using System.Text; namespace WCS.Model.ApiModel.Home { public class ResetShelfStatusRequest : RequestBase { public List SelfIds { get; set; } public bool IsResetAll { get; set; } public List GroupNames { get; set; } } }