GetStorageLocationsQuery.cs
845 Bytes
using Rcs.Application.MessageBus.Commands;
namespace Rcs.Application.MessageBus.Commands.StorageLocations
{
/// <summary>
/// Get storage location list query.
/// </summary>
public class GetStorageLocationsQuery : PaginationParameters
{
public string? LocationCode { get; set; }
public string? LocationName { get; set; }
public string? AreaId { get; set; }
public string? AreaCode { get; set; }
public string? AreaName { get; set; }
public string? LocationTypeId { get; set; }
public string? LocationTypeCode { get; set; }
public string? LocationTypeName { get; set; }
public string? MapNodeCode { get; set; }
public double? Orientation { get; set; }
public int? Status { get; set; }
public bool? IsActive { get; set; }
}
}